2012-04-14 22:19:31 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2012-04-14 22:19:31 +04:00
|
|
|
* Hypertext Transfer Protocol (HTTP)
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-11-14 18:10:52 +03:00
|
|
|
#include <errno.h>
|
|
|
|
|
2012-09-09 02:47:28 +04:00
|
|
|
#include <winpr/crt.h>
|
2012-11-14 03:57:46 +04:00
|
|
|
#include <winpr/print.h>
|
2012-12-14 05:23:37 +04:00
|
|
|
#include <winpr/stream.h>
|
2013-05-07 00:57:39 +04:00
|
|
|
#include <winpr/string.h>
|
2012-09-09 02:47:28 +04:00
|
|
|
|
2015-02-03 02:50:26 +03:00
|
|
|
#include <freerdp/log.h>
|
|
|
|
|
2014-05-21 19:32:14 +04:00
|
|
|
#ifdef HAVE_VALGRIND_MEMCHECK_H
|
|
|
|
#include <valgrind/memcheck.h>
|
|
|
|
#endif
|
|
|
|
|
2012-04-14 22:19:31 +04:00
|
|
|
#include "http.h"
|
|
|
|
|
2015-02-03 02:50:26 +03:00
|
|
|
#define TAG FREERDP_TAG("core.gateway.http")
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
#define RESPONSE_SIZE_LIMIT 64 * 1024 * 1024
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
struct _http_context
|
|
|
|
{
|
|
|
|
char* Method;
|
|
|
|
char* URI;
|
|
|
|
char* UserAgent;
|
|
|
|
char* Host;
|
|
|
|
char* Accept;
|
|
|
|
char* CacheControl;
|
|
|
|
char* Connection;
|
|
|
|
char* Pragma;
|
|
|
|
char* RdgConnectionId;
|
|
|
|
char* RdgAuthScheme;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _http_request
|
|
|
|
{
|
|
|
|
char* Method;
|
|
|
|
char* URI;
|
|
|
|
char* AuthScheme;
|
|
|
|
char* AuthParam;
|
|
|
|
char* Authorization;
|
|
|
|
size_t ContentLength;
|
|
|
|
char* Content;
|
|
|
|
char* TransferEncoding;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _http_response
|
|
|
|
{
|
|
|
|
size_t count;
|
|
|
|
char** lines;
|
|
|
|
|
|
|
|
long StatusCode;
|
|
|
|
const char* ReasonPhrase;
|
|
|
|
|
|
|
|
size_t ContentLength;
|
|
|
|
const char* ContentType;
|
|
|
|
|
|
|
|
size_t BodyLength;
|
|
|
|
BYTE* BodyContent;
|
|
|
|
|
|
|
|
wListDictionary* Authenticates;
|
|
|
|
wStream* data;
|
|
|
|
};
|
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
static char* string_strnstr(char* str1, const char* str2, size_t slen)
|
2015-02-03 01:16:32 +03:00
|
|
|
{
|
|
|
|
char c, sc;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
if ((c = *str2++) != '\0')
|
|
|
|
{
|
|
|
|
len = strlen(str2);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (slen-- < 1 || (sc = *str1++) == '\0')
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-11-14 18:10:52 +03:00
|
|
|
while (sc != c);
|
2015-02-03 01:16:32 +03:00
|
|
|
|
|
|
|
if (len > slen)
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-11-14 18:10:52 +03:00
|
|
|
while (strncmp(str1, str2, len) != 0);
|
2015-02-03 01:16:32 +03:00
|
|
|
|
|
|
|
str1--;
|
|
|
|
}
|
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
return str1;
|
2015-02-03 01:16:32 +03:00
|
|
|
}
|
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
static BOOL strings_equals_nocase(const void* obj1, const void* obj2)
|
2015-02-03 01:16:32 +03:00
|
|
|
{
|
|
|
|
if (!obj1 || !obj2)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return _stricmp(obj1, obj2) == 0;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
HttpContext* http_context_new(void)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
return (HttpContext*) calloc(1, sizeof(HttpContext));
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_method(HttpContext* context, const char* Method)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !Method)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->Method);
|
|
|
|
context->Method = _strdup(Method);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!context->Method)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
const char* http_context_get_uri(HttpContext* context)
|
|
|
|
{
|
|
|
|
if (!context)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return context->URI;
|
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_uri(HttpContext* context, const char* URI)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !URI)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->URI);
|
|
|
|
context->URI = _strdup(URI);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!context->URI)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_user_agent(HttpContext* context, const char* UserAgent)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !UserAgent)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->UserAgent);
|
|
|
|
context->UserAgent = _strdup(UserAgent);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!context->UserAgent)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_host(HttpContext* context, const char* Host)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !Host)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->Host);
|
|
|
|
context->Host = _strdup(Host);
|
|
|
|
|
|
|
|
if (!context->Host)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_accept(HttpContext* context, const char* Accept)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !Accept)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->Accept);
|
|
|
|
context->Accept = _strdup(Accept);
|
|
|
|
|
|
|
|
if (!context->Accept)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_cache_control(HttpContext* context, const char* CacheControl)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !CacheControl)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->CacheControl);
|
|
|
|
context->CacheControl = _strdup(CacheControl);
|
|
|
|
|
|
|
|
if (!context->CacheControl)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_connection(HttpContext* context, const char* Connection)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !Connection)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->Connection);
|
|
|
|
context->Connection = _strdup(Connection);
|
|
|
|
|
|
|
|
if (!context->Connection)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_context_set_pragma(HttpContext* context, const char* Pragma)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !Pragma)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->Pragma);
|
|
|
|
context->Pragma = _strdup(Pragma);
|
|
|
|
|
|
|
|
if (!context->Pragma)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
BOOL http_context_set_rdg_connection_id(HttpContext* context, const char* RdgConnectionId)
|
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !RdgConnectionId)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
free(context->RdgConnectionId);
|
|
|
|
context->RdgConnectionId = _strdup(RdgConnectionId);
|
|
|
|
|
|
|
|
if (!context->RdgConnectionId)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-02-13 18:40:23 +03:00
|
|
|
BOOL http_context_set_rdg_auth_scheme(HttpContext* context, const char* RdgAuthScheme)
|
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !RdgAuthScheme)
|
|
|
|
return FALSE;
|
|
|
|
|
2018-02-13 18:40:23 +03:00
|
|
|
free(context->RdgAuthScheme);
|
|
|
|
context->RdgAuthScheme = _strdup(RdgAuthScheme);
|
|
|
|
return context->RdgAuthScheme != NULL;
|
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
void http_context_free(HttpContext* context)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
if (context)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context->UserAgent);
|
|
|
|
free(context->Host);
|
|
|
|
free(context->URI);
|
|
|
|
free(context->Accept);
|
|
|
|
free(context->Method);
|
|
|
|
free(context->CacheControl);
|
|
|
|
free(context->Connection);
|
|
|
|
free(context->Pragma);
|
2015-03-17 21:54:16 +03:00
|
|
|
free(context->RdgConnectionId);
|
2018-02-13 18:40:23 +03:00
|
|
|
free(context->RdgAuthScheme);
|
2015-02-02 04:47:43 +03:00
|
|
|
free(context);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_request_set_method(HttpRequest* request, const char* Method)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!request || !Method)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request->Method);
|
|
|
|
request->Method = _strdup(Method);
|
|
|
|
|
|
|
|
if (!request->Method)
|
|
|
|
return FALSE;
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_request_set_uri(HttpRequest* request, const char* URI)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!request || !URI)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request->URI);
|
|
|
|
request->URI = _strdup(URI);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!request->URI)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_request_set_auth_scheme(HttpRequest* request, const char* AuthScheme)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!request || !AuthScheme)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request->AuthScheme);
|
|
|
|
request->AuthScheme = _strdup(AuthScheme);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!request->AuthScheme)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
BOOL http_request_set_auth_param(HttpRequest* request, const char* AuthParam)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!request || !AuthParam)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request->AuthParam);
|
|
|
|
request->AuthParam = _strdup(AuthParam);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!request->AuthParam)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
BOOL http_request_set_transfer_encoding(HttpRequest* request, const char* TransferEncoding)
|
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!request || !TransferEncoding)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
free(request->TransferEncoding);
|
|
|
|
request->TransferEncoding = _strdup(TransferEncoding);
|
|
|
|
|
|
|
|
if (!request->TransferEncoding)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
static BOOL http_encode_print(wStream* s, const char* fmt, ...)
|
2012-09-11 23:10:37 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
char* str;
|
|
|
|
va_list ap;
|
2018-10-18 10:09:30 +03:00
|
|
|
int length, used;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!s || !fmt)
|
|
|
|
return FALSE;
|
2012-09-11 23:10:37 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
va_start(ap, fmt);
|
|
|
|
length = vsnprintf(NULL, 0, fmt, ap) + 1;
|
|
|
|
va_end(ap);
|
2012-09-11 23:10:37 +04:00
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, (size_t)length))
|
2018-09-27 16:04:41 +03:00
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-09-27 17:05:14 +03:00
|
|
|
str = (char*)Stream_Pointer(s);
|
2018-09-27 16:04:41 +03:00
|
|
|
va_start(ap, fmt);
|
2018-10-18 10:09:30 +03:00
|
|
|
used = vsnprintf(str, (size_t)length, fmt, ap);
|
2018-09-27 16:04:41 +03:00
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* Strip the trailing '\0' from the string. */
|
|
|
|
if ((used + 1) != length)
|
|
|
|
return FALSE;
|
2012-09-11 23:10:37 +04:00
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
Stream_Seek(s, (size_t)used);
|
2018-09-27 16:04:41 +03:00
|
|
|
return TRUE;
|
2012-09-11 23:10:37 +04:00
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
static BOOL http_encode_body_line(wStream* s, const char* param, const char* value)
|
2012-09-11 23:10:37 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!s || !param || !value)
|
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
return http_encode_print(s, "%s: %s\r\n", param, value);
|
|
|
|
}
|
2012-09-11 23:10:37 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
static BOOL http_encode_content_length_line(wStream* s, size_t ContentLength)
|
|
|
|
{
|
|
|
|
return http_encode_print(s, "Content-Length: %"PRIdz"\r\n", ContentLength);
|
2012-09-11 23:10:37 +04:00
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
static BOOL http_encode_header_line(wStream* s, const char* Method, const char* URI)
|
2012-09-11 23:10:37 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!s || !Method || !URI)
|
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
return http_encode_print(s, "%s %s HTTP/1.1\r\n", Method, URI);
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL http_encode_authorization_line(wStream* s, const char* AuthScheme,
|
|
|
|
const char* AuthParam)
|
|
|
|
{
|
|
|
|
if (!s || !AuthScheme || !AuthParam)
|
|
|
|
return FALSE;
|
2012-09-11 23:10:37 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
return http_encode_print(s, "Authorization: %s %s\r\n", AuthScheme, AuthParam);
|
2012-09-11 23:10:37 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
wStream* http_request_write(HttpContext* context, HttpRequest* request)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
wStream* s;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!context || !request)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
s = Stream_New(NULL, 1024);
|
|
|
|
|
|
|
|
if (!s)
|
2014-04-09 17:00:38 +04:00
|
|
|
return NULL;
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_encode_header_line(s, request->Method, request->URI) ||
|
|
|
|
!http_encode_body_line(s, "Cache-Control", context->CacheControl) ||
|
|
|
|
!http_encode_body_line(s, "Connection", context->Connection) ||
|
|
|
|
!http_encode_body_line(s, "Pragma", context->Pragma) ||
|
|
|
|
!http_encode_body_line(s, "Accept", context->Accept) ||
|
|
|
|
!http_encode_body_line(s, "User-Agent", context->UserAgent) ||
|
|
|
|
!http_encode_body_line(s, "Host", context->Host))
|
|
|
|
goto fail;
|
2014-04-09 17:00:38 +04:00
|
|
|
|
2015-03-17 21:54:16 +03:00
|
|
|
if (context->RdgConnectionId)
|
2018-09-27 16:04:41 +03:00
|
|
|
{
|
|
|
|
if (!http_encode_body_line(s, "RDG-Connection-Id", context->RdgConnectionId))
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2018-02-13 18:40:23 +03:00
|
|
|
if (context->RdgAuthScheme)
|
2018-09-27 16:04:41 +03:00
|
|
|
{
|
|
|
|
if (!http_encode_body_line(s, "RDG-Auth-Scheme", context->RdgAuthScheme))
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
|
|
|
if (request->TransferEncoding)
|
2018-04-05 05:08:20 +03:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_encode_body_line(s, "Transfer-Encoding", request->TransferEncoding))
|
|
|
|
goto fail;
|
2018-04-05 05:08:20 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_encode_content_length_line(s, request->ContentLength))
|
|
|
|
goto fail;
|
2018-04-05 05:08:20 +03:00
|
|
|
}
|
2015-03-17 21:54:16 +03:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (request->Authorization)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_encode_body_line(s, "Authorization", request->Authorization))
|
|
|
|
goto fail;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2015-02-02 04:47:43 +03:00
|
|
|
else if (request->AuthScheme && request->AuthParam)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!http_encode_authorization_line(s, request->AuthScheme, request->AuthParam))
|
|
|
|
goto fail;
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2014-08-18 19:22:43 +04:00
|
|
|
Stream_Write(s, "\r\n", 2);
|
2018-09-27 16:04:41 +03:00
|
|
|
Stream_SealLength(s);
|
2012-04-14 22:19:31 +04:00
|
|
|
return s;
|
2018-09-27 16:04:41 +03:00
|
|
|
fail:
|
|
|
|
Stream_Free(s, TRUE);
|
2014-04-09 17:00:38 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-04-14 22:19:31 +04:00
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
HttpRequest* http_request_new(void)
|
2014-04-09 17:00:38 +04:00
|
|
|
{
|
2014-08-18 21:34:47 +04:00
|
|
|
return (HttpRequest*) calloc(1, sizeof(HttpRequest));
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
void http_request_free(HttpRequest* request)
|
2012-04-14 22:19:31 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!request)
|
2014-04-09 17:00:38 +04:00
|
|
|
return;
|
|
|
|
|
2015-05-11 10:07:39 +03:00
|
|
|
free(request->AuthParam);
|
|
|
|
free(request->AuthScheme);
|
|
|
|
free(request->Authorization);
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request->Content);
|
|
|
|
free(request->Method);
|
|
|
|
free(request->URI);
|
2015-03-17 23:09:17 +03:00
|
|
|
free(request->TransferEncoding);
|
2015-02-02 04:47:43 +03:00
|
|
|
free(request);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL http_response_parse_header_status_line(HttpResponse* response, char* status_line)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2014-11-17 02:00:09 +03:00
|
|
|
char* separator = NULL;
|
2014-08-18 21:34:47 +04:00
|
|
|
char* status_code;
|
|
|
|
char* reason_phrase;
|
2014-11-17 02:00:09 +03:00
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!response)
|
|
|
|
return FALSE;
|
|
|
|
|
2014-11-17 02:00:09 +03:00
|
|
|
if (status_line)
|
|
|
|
separator = strchr(status_line, ' ');
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if (!separator)
|
|
|
|
return FALSE;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2014-08-18 19:22:43 +04:00
|
|
|
status_code = separator + 1;
|
2012-04-17 00:21:46 +04:00
|
|
|
separator = strchr(status_code, ' ');
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if (!separator)
|
|
|
|
return FALSE;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2014-08-18 19:22:43 +04:00
|
|
|
reason_phrase = separator + 1;
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = '\0';
|
2017-11-14 18:10:52 +03:00
|
|
|
errno = 0;
|
|
|
|
{
|
|
|
|
long val = strtol(status_code, NULL, 0);
|
|
|
|
|
|
|
|
if ((errno != 0) || (val < 0) || (val > INT16_MAX))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
response->StatusCode = strtol(status_code, NULL, 0);
|
|
|
|
}
|
2018-01-15 18:50:01 +03:00
|
|
|
response->ReasonPhrase = reason_phrase;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response->ReasonPhrase)
|
2014-04-09 17:00:38 +04:00
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = ' ';
|
2013-05-07 00:57:39 +04:00
|
|
|
return TRUE;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
static BOOL http_response_parse_header_field(HttpResponse* response, const char* name,
|
|
|
|
const char* value)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2014-12-11 19:25:34 +03:00
|
|
|
BOOL status = TRUE;
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
if (!response || !name)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if (_stricmp(name, "Content-Length") == 0)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
unsigned long long val;
|
2017-11-14 18:10:52 +03:00
|
|
|
errno = 0;
|
2018-01-16 10:15:34 +03:00
|
|
|
val = _strtoui64(value, NULL, 0);
|
2017-11-14 18:10:52 +03:00
|
|
|
|
2018-04-04 11:45:32 +03:00
|
|
|
if ((errno != 0) || (val > INT32_MAX))
|
2017-11-14 18:10:52 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
response->ContentLength = val;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2015-02-03 01:16:32 +03:00
|
|
|
else if (_stricmp(name, "Content-Type") == 0)
|
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
response->ContentType = value;
|
2015-02-03 01:16:32 +03:00
|
|
|
|
|
|
|
if (!response->ContentType)
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-04-19 01:08:34 +04:00
|
|
|
else if (_stricmp(name, "WWW-Authenticate") == 0)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2014-12-11 19:25:34 +03:00
|
|
|
char* separator = NULL;
|
2018-01-15 18:50:01 +03:00
|
|
|
const char* authScheme = NULL;
|
2018-10-18 10:09:30 +03:00
|
|
|
char* authValue = NULL;
|
2012-04-17 00:21:46 +04:00
|
|
|
separator = strchr(value, ' ');
|
|
|
|
|
2014-12-11 19:25:34 +03:00
|
|
|
if (separator)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2014-04-19 01:08:34 +04:00
|
|
|
/* WWW-Authenticate: Basic realm=""
|
|
|
|
* WWW-Authenticate: NTLM base64token
|
|
|
|
* WWW-Authenticate: Digest realm="testrealm@host.com", qop="auth, auth-int",
|
|
|
|
* nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093",
|
|
|
|
* opaque="5ccc069c403ebaf9f0171e9517f40e41"
|
|
|
|
*/
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = '\0';
|
2018-01-15 18:50:01 +03:00
|
|
|
authScheme = value;
|
|
|
|
authValue = separator + 1;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2014-04-19 01:08:34 +04:00
|
|
|
if (!authScheme || !authValue)
|
2014-04-09 17:00:38 +04:00
|
|
|
return FALSE;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2014-04-19 01:08:34 +04:00
|
|
|
else
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
authScheme = value;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2014-04-19 01:08:34 +04:00
|
|
|
if (!authScheme)
|
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2014-04-19 01:08:34 +04:00
|
|
|
authValue = NULL;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
status = ListDictionary_Add(response->Authenticates, authScheme, authValue);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2014-12-11 19:25:34 +03:00
|
|
|
return status;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
static BOOL http_response_parse_header(HttpResponse* response)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2015-02-03 01:16:32 +03:00
|
|
|
char c;
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t count;
|
2014-08-18 21:34:47 +04:00
|
|
|
char* line;
|
|
|
|
char* name;
|
|
|
|
char* value;
|
|
|
|
char* colon_pos;
|
|
|
|
char* end_of_header;
|
2013-05-07 00:57:39 +04:00
|
|
|
char end_of_header_char;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response)
|
2013-08-29 17:30:22 +04:00
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response->lines)
|
2013-08-29 17:30:22 +04:00
|
|
|
return FALSE;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!http_response_parse_header_status_line(response, response->lines[0]))
|
2013-05-07 00:57:39 +04:00
|
|
|
return FALSE;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
for (count = 1; count < response->count; count++)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
line = response->lines[count];
|
2017-11-14 18:10:52 +03:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
/**
|
|
|
|
* name end_of_header
|
|
|
|
* | |
|
|
|
|
* v v
|
|
|
|
* <header name> : <header value>
|
|
|
|
* ^ ^
|
|
|
|
* | |
|
|
|
|
* colon_pos value
|
|
|
|
*/
|
2014-11-17 02:00:09 +03:00
|
|
|
if (line)
|
|
|
|
colon_pos = strchr(line, ':');
|
|
|
|
else
|
|
|
|
colon_pos = NULL;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if ((colon_pos == NULL) || (colon_pos == line))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* retrieve the position just after header name */
|
2014-08-18 19:22:43 +04:00
|
|
|
for (end_of_header = colon_pos; end_of_header != line; end_of_header--)
|
2013-05-07 00:57:39 +04:00
|
|
|
{
|
|
|
|
c = end_of_header[-1];
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if (c != ' ' && c != '\t' && c != ':')
|
|
|
|
break;
|
|
|
|
}
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
if (end_of_header == line)
|
|
|
|
return FALSE;
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
end_of_header_char = *end_of_header;
|
|
|
|
*end_of_header = '\0';
|
2012-04-17 00:21:46 +04:00
|
|
|
name = line;
|
2013-05-07 00:57:39 +04:00
|
|
|
|
|
|
|
/* eat space and tabs before header value */
|
|
|
|
for (value = colon_pos + 1; *value; value++)
|
|
|
|
{
|
|
|
|
if ((*value != ' ') && (*value != '\t'))
|
|
|
|
break;
|
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!http_response_parse_header_field(response, name, value))
|
2014-04-09 17:00:38 +04:00
|
|
|
return FALSE;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
*end_of_header = end_of_header_char;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2013-05-07 00:57:39 +04:00
|
|
|
return TRUE;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2018-09-27 16:04:41 +03:00
|
|
|
BOOL http_response_print(HttpResponse* response)
|
2012-04-22 00:18:07 +04:00
|
|
|
{
|
2018-09-27 16:04:41 +03:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (!response)
|
|
|
|
return FALSE;
|
2012-04-22 00:18:07 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
for (i = 0; i < response->count; i++)
|
|
|
|
WLog_ERR(TAG, "%s", response->lines[i]);
|
2018-09-27 16:04:41 +03:00
|
|
|
|
|
|
|
return TRUE;
|
2012-04-22 00:18:07 +04:00
|
|
|
}
|
|
|
|
|
2018-10-19 12:39:22 +03:00
|
|
|
static BOOL http_use_content_length(const char* cur)
|
|
|
|
{
|
|
|
|
size_t pos = 0;
|
|
|
|
|
|
|
|
if (!cur)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (_strnicmp(cur, "application/rpc", 15) == 0)
|
|
|
|
pos = 15;
|
|
|
|
else if (_strnicmp(cur, "text/plain", 10) == 0)
|
|
|
|
pos = 10;
|
|
|
|
else if (_strnicmp(cur, "text/html", 9) == 0)
|
|
|
|
pos = 9;
|
|
|
|
|
|
|
|
if (pos > 0)
|
|
|
|
{
|
|
|
|
char end = cur[pos];
|
|
|
|
|
|
|
|
switch (end)
|
|
|
|
{
|
|
|
|
case ' ':
|
|
|
|
case ';':
|
|
|
|
case '\0':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
HttpResponse* http_response_recv(rdpTls* tls)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t size;
|
2017-12-11 12:25:21 +03:00
|
|
|
size_t position;
|
2018-02-14 12:14:33 +03:00
|
|
|
size_t bodyLength = 0;
|
2018-01-15 18:50:01 +03:00
|
|
|
size_t payloadOffset;
|
2015-02-02 04:47:43 +03:00
|
|
|
HttpResponse* response;
|
2015-03-19 18:44:47 +03:00
|
|
|
size = 2048;
|
2015-02-03 01:16:32 +03:00
|
|
|
payloadOffset = 0;
|
2015-02-02 04:47:43 +03:00
|
|
|
response = http_response_new();
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response)
|
2018-01-15 18:50:01 +03:00
|
|
|
return NULL;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
response->ContentLength = 0;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-10-19 12:59:28 +03:00
|
|
|
while (payloadOffset == 0)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2018-10-19 12:59:28 +03:00
|
|
|
size_t s;
|
|
|
|
char* end;
|
|
|
|
/* Read until we encounter \r\n\r\n */
|
2018-10-19 13:52:14 +03:00
|
|
|
int status = BIO_read(tls->bio, Stream_Pointer(response->data), 1);
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (status <= 0)
|
|
|
|
{
|
|
|
|
if (!BIO_should_retry(tls->bio))
|
|
|
|
goto out_error;
|
2014-04-09 17:00:38 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
USleep(100);
|
|
|
|
continue;
|
|
|
|
}
|
2014-04-09 17:00:38 +04:00
|
|
|
|
2014-05-21 19:32:14 +04:00
|
|
|
#ifdef HAVE_VALGRIND_MEMCHECK_H
|
2018-02-14 12:15:51 +03:00
|
|
|
VALGRIND_MAKE_MEM_DEFINED(Stream_Pointer(response->data), status);
|
2014-05-21 19:32:14 +04:00
|
|
|
#endif
|
2018-09-27 17:05:14 +03:00
|
|
|
Stream_Seek(response->data, (size_t)status);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-10-19 12:59:28 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(response->data, 1024))
|
|
|
|
goto out_error;
|
2013-05-07 00:57:39 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
position = Stream_GetPosition(response->data);
|
2015-02-03 01:16:32 +03:00
|
|
|
|
2018-10-19 12:59:28 +03:00
|
|
|
if (position < 4)
|
|
|
|
continue;
|
|
|
|
else if (position > RESPONSE_SIZE_LIMIT)
|
2018-01-15 18:50:01 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Request header too large! (%"PRIdz" bytes) Aborting!", bodyLength);
|
|
|
|
goto out_error;
|
2015-02-03 01:16:32 +03:00
|
|
|
}
|
2015-02-02 02:50:21 +03:00
|
|
|
|
2018-10-19 12:59:28 +03:00
|
|
|
/* Always check at most the lase 8 bytes for occurance of the desired
|
|
|
|
* sequence of \r\n\r\n */
|
|
|
|
s = (position > 8) ? 8 : position;
|
|
|
|
end = (char*)Stream_Pointer(response->data) - s;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-10-19 12:59:28 +03:00
|
|
|
if (string_strnstr(end, "\r\n\r\n", s) != NULL)
|
|
|
|
payloadOffset = Stream_GetPosition(response->data);
|
2018-01-15 18:50:01 +03:00
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (payloadOffset)
|
|
|
|
{
|
|
|
|
size_t count = 0;
|
2018-06-06 17:43:09 +03:00
|
|
|
char* buffer = (char*)Stream_Buffer(response->data);
|
|
|
|
char* line = (char*) Stream_Buffer(response->data);
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-10-18 10:09:30 +03:00
|
|
|
while ((line = string_strnstr(line, "\r\n", payloadOffset - (line - buffer) - 2UL)))
|
2018-01-15 18:50:01 +03:00
|
|
|
{
|
|
|
|
line += 2;
|
|
|
|
count++;
|
|
|
|
}
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
response->count = count;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (count)
|
|
|
|
{
|
|
|
|
response->lines = (char**) calloc(response->count, sizeof(char*));
|
2015-02-03 01:16:32 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (!response->lines)
|
2015-02-03 01:16:32 +03:00
|
|
|
goto out_error;
|
2018-01-15 18:50:01 +03:00
|
|
|
}
|
2015-02-03 01:16:32 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
buffer[payloadOffset - 1] = '\0';
|
|
|
|
buffer[payloadOffset - 2] = '\0';
|
|
|
|
count = 0;
|
|
|
|
line = strtok(buffer, "\r\n");
|
2014-04-09 17:00:38 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
while (line && response->lines)
|
|
|
|
{
|
|
|
|
response->lines[count] = line;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (!response->lines[count])
|
2014-04-09 17:00:38 +04:00
|
|
|
goto out_error;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
line = strtok(NULL, "\r\n");
|
|
|
|
count++;
|
|
|
|
}
|
2015-02-03 01:16:32 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (!http_response_parse_header(response))
|
|
|
|
goto out_error;
|
2015-02-03 01:16:32 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
response->BodyLength = Stream_GetPosition(response->data) - payloadOffset;
|
|
|
|
bodyLength = 0; /* expected body length */
|
|
|
|
{
|
2018-10-19 12:39:22 +03:00
|
|
|
const char* cur = response->ContentType;
|
2018-01-15 18:50:01 +03:00
|
|
|
bodyLength = response->BodyLength;
|
2016-11-13 05:26:01 +03:00
|
|
|
|
2018-10-19 12:39:22 +03:00
|
|
|
while (cur != NULL)
|
|
|
|
{
|
|
|
|
if (http_use_content_length(cur))
|
|
|
|
{
|
|
|
|
bodyLength = response->ContentLength;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur = strchr(cur, ';');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (bodyLength > RESPONSE_SIZE_LIMIT)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Expected request body too large! (%"PRIdz" bytes) Aborting!", bodyLength);
|
|
|
|
goto out_error;
|
|
|
|
}
|
2016-11-13 05:26:01 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
/* Fetch remaining body! */
|
|
|
|
while (response->BodyLength < bodyLength)
|
|
|
|
{
|
|
|
|
int status;
|
2016-11-13 05:26:01 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(response->data, bodyLength - response->BodyLength))
|
|
|
|
goto out_error;
|
2016-11-13 05:26:01 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
status = BIO_read(tls->bio, Stream_Pointer(response->data), bodyLength - response->BodyLength);
|
2016-11-13 05:26:01 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (status <= 0)
|
2016-11-13 05:26:01 +03:00
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
if (!BIO_should_retry(tls->bio))
|
2016-11-13 05:26:01 +03:00
|
|
|
goto out_error;
|
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
USleep(100);
|
|
|
|
continue;
|
2016-11-13 05:26:01 +03:00
|
|
|
}
|
|
|
|
|
2018-09-27 17:05:14 +03:00
|
|
|
Stream_Seek(response->data, (size_t)status);
|
2018-10-18 10:09:30 +03:00
|
|
|
response->BodyLength += (unsigned long)status;
|
2018-01-15 18:50:01 +03:00
|
|
|
|
|
|
|
if (response->BodyLength > RESPONSE_SIZE_LIMIT)
|
2015-02-03 01:16:32 +03:00
|
|
|
{
|
2018-01-15 18:50:01 +03:00
|
|
|
WLog_ERR(TAG, "Request body too large! (%"PRIdz" bytes) Aborting!", response->BodyLength);
|
|
|
|
goto out_error;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
}
|
2012-04-19 19:29:53 +04:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (response->BodyLength > 0)
|
|
|
|
response->BodyContent = &(Stream_Buffer(response->data))[payloadOffset];
|
2017-11-14 18:10:52 +03:00
|
|
|
|
2018-01-15 18:50:01 +03:00
|
|
|
if (bodyLength != response->BodyLength)
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG, "http_response_recv: %s unexpected body length: actual: %d, expected: %d",
|
2018-10-18 17:58:53 +03:00
|
|
|
response->ContentType, response->BodyLength, bodyLength);
|
|
|
|
|
|
|
|
if (bodyLength > 0)
|
|
|
|
response->BodyLength = MIN(bodyLength, response->BodyLength);
|
2012-04-19 19:29:53 +04:00
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
return response;
|
2014-04-09 17:00:38 +04:00
|
|
|
out_error:
|
2015-02-02 04:47:43 +03:00
|
|
|
http_response_free(response);
|
2014-04-09 17:00:38 +04:00
|
|
|
return NULL;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:43:37 +03:00
|
|
|
HttpResponse* http_response_new(void)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
HttpResponse* response = (HttpResponse*) calloc(1, sizeof(HttpResponse));
|
2014-08-18 19:22:43 +04:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response)
|
2014-04-19 01:08:34 +04:00
|
|
|
return NULL;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
response->Authenticates = ListDictionary_New(FALSE);
|
2017-11-14 18:10:52 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!response->Authenticates)
|
2018-01-15 18:50:01 +03:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
response->data = Stream_New(NULL, 2048);
|
|
|
|
|
|
|
|
if (!response->data)
|
|
|
|
goto fail;
|
2014-12-11 19:25:34 +03:00
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
ListDictionary_KeyObject(response->Authenticates)->fnObjectEquals = strings_equals_nocase;
|
|
|
|
ListDictionary_ValueObject(response->Authenticates)->fnObjectEquals = strings_equals_nocase;
|
|
|
|
return response;
|
2018-01-15 18:50:01 +03:00
|
|
|
fail:
|
|
|
|
http_response_free(response);
|
|
|
|
return NULL;
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
void http_response_free(HttpResponse* response)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2015-02-02 04:47:43 +03:00
|
|
|
if (!response)
|
2014-04-19 01:08:34 +04:00
|
|
|
return;
|
|
|
|
|
2015-02-02 04:47:43 +03:00
|
|
|
free(response->lines);
|
|
|
|
ListDictionary_Free(response->Authenticates);
|
2018-01-15 18:50:01 +03:00
|
|
|
Stream_Free(response->data, TRUE);
|
2015-02-02 04:47:43 +03:00
|
|
|
free(response);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2018-09-27 16:04:41 +03:00
|
|
|
|
|
|
|
const char* http_request_get_uri(HttpRequest* request)
|
|
|
|
{
|
|
|
|
if (!request)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return request->URI;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSIZE_T http_request_get_content_length(HttpRequest* request)
|
|
|
|
{
|
|
|
|
if (!request)
|
|
|
|
return -1;
|
|
|
|
|
2018-09-27 17:05:14 +03:00
|
|
|
return (SSIZE_T)request->ContentLength;
|
2018-09-27 16:04:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL http_request_set_content_length(HttpRequest* request, size_t length)
|
|
|
|
{
|
|
|
|
if (!request)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
request->ContentLength = length;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
long http_response_get_status_code(HttpResponse* response)
|
|
|
|
{
|
|
|
|
if (!response)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return response->StatusCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSIZE_T http_response_get_body_length(HttpResponse* response)
|
|
|
|
{
|
|
|
|
if (!response)
|
|
|
|
return -1;
|
|
|
|
|
2018-09-27 17:05:14 +03:00
|
|
|
return (SSIZE_T)response->BodyLength;
|
2018-09-27 16:04:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* http_response_get_auth_token(HttpResponse* respone, const char* method)
|
|
|
|
{
|
|
|
|
if (!respone || !method)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!ListDictionary_Contains(respone->Authenticates, method))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ListDictionary_GetItemValue(respone->Authenticates, method);
|
|
|
|
}
|