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
|
|
|
|
|
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-09-09 02:47:28 +04:00
|
|
|
|
2012-04-14 22:19:31 +04:00
|
|
|
#include "http.h"
|
|
|
|
|
|
|
|
HttpContext* http_context_new()
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
HttpContext* http_context = (HttpContext*) malloc(sizeof(HttpContext));
|
2012-04-14 22:19:31 +04:00
|
|
|
|
|
|
|
if (http_context != NULL)
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
ZeroMemory(http_context, sizeof(HttpContext));
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return http_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_method(HttpContext* http_context, char* method)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->Method)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->Method);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->Method = _strdup(method);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_uri(HttpContext* http_context, char* uri)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->URI)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->URI);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->URI = _strdup(uri);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_user_agent(HttpContext* http_context, char* user_agent)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->UserAgent)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->UserAgent);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->UserAgent = _strdup(user_agent);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_host(HttpContext* http_context, char* host)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->Host)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->Host);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->Host = _strdup(host);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_accept(HttpContext* http_context, char* accept)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->Accept)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->Accept);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->Accept = _strdup(accept);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_cache_control(HttpContext* http_context, char* cache_control)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->CacheControl)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->CacheControl);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->CacheControl = _strdup(cache_control);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_connection(HttpContext* http_context, char* connection)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->Connection)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->Connection);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->Connection = _strdup(connection);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_set_pragma(HttpContext* http_context, char* pragma)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_context->Pragma)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->Pragma);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_context->Pragma = _strdup(pragma);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_context_free(HttpContext* http_context)
|
|
|
|
{
|
|
|
|
if (http_context != NULL)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_context->UserAgent);
|
|
|
|
free(http_context->Host);
|
|
|
|
free(http_context->Accept);
|
|
|
|
free(http_context->CacheControl);
|
|
|
|
free(http_context->Connection);
|
|
|
|
free(http_context->Pragma);
|
|
|
|
free(http_context);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_request_set_method(HttpRequest* http_request, char* method)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_request->Method)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->Method);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_request->Method = _strdup(method);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_request_set_uri(HttpRequest* http_request, char* uri)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_request->URI)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->URI);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_request->URI = _strdup(uri);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
2012-04-17 00:21:46 +04:00
|
|
|
void http_request_set_auth_scheme(HttpRequest* http_request, char* auth_scheme)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_request->AuthScheme)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->AuthScheme);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_request->AuthScheme = _strdup(auth_scheme);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void http_request_set_auth_param(HttpRequest* http_request, char* auth_param)
|
|
|
|
{
|
2012-05-06 08:53:07 +04:00
|
|
|
if (http_request->AuthParam)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->AuthParam);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_request->AuthParam = _strdup(auth_param);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2012-09-11 23:10:37 +04:00
|
|
|
char* http_encode_body_line(char* param, char* value)
|
|
|
|
{
|
|
|
|
char* line;
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = strlen(param) + strlen(value) + 2;
|
|
|
|
line = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(line, length + 1, "%s: %s", param, value);
|
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* http_encode_content_length_line(int ContentLength)
|
|
|
|
{
|
|
|
|
char* line;
|
|
|
|
int length;
|
|
|
|
char str[32];
|
|
|
|
|
|
|
|
_itoa_s(ContentLength, str, sizeof(str), 10);
|
|
|
|
length = strlen("Content-Length") + strlen(str) + 2;
|
|
|
|
line = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(line, length + 1, "Content-Length: %s", str);
|
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* http_encode_header_line(char* Method, char* URI)
|
|
|
|
{
|
|
|
|
char* line;
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = strlen("HTTP/1.1") + strlen(Method) + strlen(URI) + 2;
|
|
|
|
line = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(line, length + 1, "%s %s HTTP/1.1", Method, URI);
|
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* http_encode_authorization_line(char* AuthScheme, char* AuthParam)
|
|
|
|
{
|
|
|
|
char* line;
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = strlen("Authorization") + strlen(AuthScheme) + strlen(AuthParam) + 3;
|
|
|
|
line = (char*) malloc(length + 1);
|
|
|
|
sprintf_s(line, length + 1, "Authorization: %s %s", AuthScheme, AuthParam);
|
|
|
|
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
2012-04-14 22:19:31 +04:00
|
|
|
STREAM* http_request_write(HttpContext* http_context, HttpRequest* http_request)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
STREAM* s;
|
|
|
|
int length = 0;
|
|
|
|
|
2012-04-17 00:21:46 +04:00
|
|
|
http_request->count = 9;
|
2012-09-11 23:10:37 +04:00
|
|
|
http_request->lines = (char**) malloc(sizeof(char*) * http_request->count);
|
2012-04-14 22:19:31 +04:00
|
|
|
|
2012-09-11 23:10:37 +04:00
|
|
|
http_request->lines[0] = http_encode_header_line(http_request->Method, http_request->URI);
|
|
|
|
http_request->lines[1] = http_encode_body_line("Cache-Control", http_context->CacheControl);
|
|
|
|
http_request->lines[2] = http_encode_body_line("Connection", http_context->Connection);
|
|
|
|
http_request->lines[3] = http_encode_body_line("Pragma", http_context->Pragma);
|
|
|
|
http_request->lines[4] = http_encode_body_line("Accept", http_context->Accept);
|
|
|
|
http_request->lines[5] = http_encode_body_line("User-Agent", http_context->UserAgent);
|
|
|
|
http_request->lines[6] = http_encode_content_length_line(http_request->ContentLength);
|
|
|
|
http_request->lines[7] = http_encode_body_line("Host", http_context->Host);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
if (http_request->Authorization != NULL)
|
|
|
|
{
|
2012-09-11 23:10:37 +04:00
|
|
|
http_request->lines[8] = http_encode_body_line("Authorization", http_request->Authorization);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
else if ((http_request->AuthScheme != NULL) && (http_request->AuthParam != NULL))
|
|
|
|
{
|
2012-09-11 23:10:37 +04:00
|
|
|
http_request->lines[8] = http_encode_authorization_line(http_request->AuthScheme, http_request->AuthParam);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
2012-04-14 22:19:31 +04:00
|
|
|
|
|
|
|
for (i = 0; i < http_request->count; i++)
|
|
|
|
{
|
2012-10-29 02:01:18 +04:00
|
|
|
length += (strlen(http_request->lines[i]) + 2); /* add +2 for each '\r\n' character */
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
2012-10-29 02:01:18 +04:00
|
|
|
length += 2; /* empty line "\r\n" at end of header */
|
2012-04-17 00:21:46 +04:00
|
|
|
length += 1; /* null terminator */
|
2012-04-14 22:19:31 +04:00
|
|
|
|
|
|
|
s = stream_new(length);
|
|
|
|
|
|
|
|
for (i = 0; i < http_request->count; i++)
|
|
|
|
{
|
|
|
|
stream_write(s, http_request->lines[i], strlen(http_request->lines[i]));
|
2012-10-29 02:01:18 +04:00
|
|
|
stream_write(s, "\r\n", 2);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->lines[i]);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
2012-10-29 02:01:18 +04:00
|
|
|
stream_write(s, "\r\n", 2);
|
2012-04-14 22:19:31 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->lines);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
stream_write(s, "\0", 1); /* append null terminator */
|
|
|
|
stream_rewind(s, 1); /* don't include null terminator in length */
|
2012-04-14 22:19:31 +04:00
|
|
|
stream_seal(s);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpRequest* http_request_new()
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
HttpRequest* http_request = (HttpRequest*) malloc(sizeof(HttpRequest));
|
2012-04-14 22:19:31 +04:00
|
|
|
|
|
|
|
if (http_request != NULL)
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
ZeroMemory(http_request, sizeof(HttpRequest));
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return http_request;
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_request_free(HttpRequest* http_request)
|
|
|
|
{
|
|
|
|
if (http_request != NULL)
|
|
|
|
{
|
2012-12-12 08:34:51 +04:00
|
|
|
free(http_request->AuthParam);
|
|
|
|
free(http_request->AuthScheme);
|
|
|
|
free(http_request->Authorization);
|
|
|
|
free(http_request->Content);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_request->Method);
|
|
|
|
free(http_request->URI);
|
|
|
|
free(http_request);
|
2012-04-14 22:19:31 +04:00
|
|
|
}
|
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
void http_response_parse_header_status_line(HttpResponse* http_response, char* status_line)
|
|
|
|
{
|
|
|
|
char* separator;
|
|
|
|
char* status_code;
|
|
|
|
char* reason_phrase;
|
|
|
|
|
|
|
|
separator = strchr(status_line, ' ');
|
|
|
|
status_code = separator + 1;
|
|
|
|
|
|
|
|
separator = strchr(status_code, ' ');
|
|
|
|
reason_phrase = separator + 1;
|
|
|
|
|
|
|
|
*separator = '\0';
|
|
|
|
http_response->StatusCode = atoi(status_code);
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->ReasonPhrase = _strdup(reason_phrase);
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_response_parse_header_field(HttpResponse* http_response, char* name, char* value)
|
|
|
|
{
|
|
|
|
if (strcmp(name, "Content-Length") == 0)
|
|
|
|
{
|
|
|
|
http_response->ContentLength = atoi(value);
|
|
|
|
}
|
|
|
|
else if (strcmp(name, "Authorization") == 0)
|
|
|
|
{
|
|
|
|
char* separator;
|
|
|
|
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->Authorization = _strdup(value);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
separator = strchr(value, ' ');
|
|
|
|
|
|
|
|
if (separator != NULL)
|
|
|
|
{
|
|
|
|
*separator = '\0';
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->AuthScheme = _strdup(value);
|
|
|
|
http_response->AuthParam = _strdup(separator + 1);
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp(name, "WWW-Authenticate") == 0)
|
|
|
|
{
|
|
|
|
char* separator;
|
|
|
|
|
|
|
|
separator = strstr(value, "=\"");
|
|
|
|
|
|
|
|
if (separator != NULL)
|
|
|
|
{
|
|
|
|
/* WWW-Authenticate: parameter with spaces="value" */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
separator = strchr(value, ' ');
|
|
|
|
|
|
|
|
if (separator != NULL)
|
|
|
|
{
|
|
|
|
/* WWW-Authenticate: NTLM base64token */
|
|
|
|
|
|
|
|
*separator = '\0';
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->AuthScheme = _strdup(value);
|
|
|
|
http_response->AuthParam = _strdup(separator + 1);
|
2012-04-17 00:21:46 +04:00
|
|
|
*separator = ' ';
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_response_parse_header(HttpResponse* http_response)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
char* line;
|
|
|
|
char* name;
|
|
|
|
char* value;
|
|
|
|
char* separator;
|
|
|
|
|
|
|
|
http_response_parse_header_status_line(http_response, http_response->lines[0]);
|
|
|
|
|
|
|
|
for (count = 1; count < http_response->count; count++)
|
|
|
|
{
|
|
|
|
line = http_response->lines[count];
|
|
|
|
|
|
|
|
separator = strstr(line, ": ");
|
|
|
|
|
|
|
|
if (separator == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
separator[0] = '\0';
|
|
|
|
separator[1] = '\0';
|
|
|
|
|
|
|
|
name = line;
|
|
|
|
value = separator + 2;
|
|
|
|
|
|
|
|
http_response_parse_header_field(http_response, name, value);
|
|
|
|
|
|
|
|
separator[0] = ':';
|
|
|
|
separator[1] = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-22 00:18:07 +04:00
|
|
|
void http_response_print(HttpResponse* http_response)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < http_response->count; i++)
|
|
|
|
{
|
|
|
|
printf("%s\n", http_response->lines[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2012-04-17 00:21:46 +04:00
|
|
|
HttpResponse* http_response_recv(rdpTls* tls)
|
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* p;
|
2012-04-17 00:21:46 +04:00
|
|
|
int nbytes;
|
|
|
|
int length;
|
|
|
|
int status;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* buffer;
|
2012-04-17 00:21:46 +04:00
|
|
|
char* content;
|
|
|
|
char* header_end;
|
|
|
|
HttpResponse* http_response;
|
|
|
|
|
|
|
|
nbytes = 0;
|
2012-05-06 08:53:07 +04:00
|
|
|
length = 10000;
|
2012-12-12 08:34:51 +04:00
|
|
|
content = NULL;
|
2012-10-09 07:21:26 +04:00
|
|
|
buffer = malloc(length);
|
2012-04-17 00:21:46 +04:00
|
|
|
http_response = http_response_new();
|
|
|
|
|
|
|
|
p = buffer;
|
2012-12-12 08:34:51 +04:00
|
|
|
http_response->ContentLength = 0;
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
while (TRUE)
|
2012-04-17 00:21:46 +04:00
|
|
|
{
|
2012-11-17 12:45:15 +04:00
|
|
|
while (nbytes < 5)
|
|
|
|
{
|
|
|
|
status = tls_read(tls, p, length - nbytes);
|
2012-11-14 03:57:46 +04:00
|
|
|
|
2012-11-17 12:45:15 +04:00
|
|
|
if (status > 0)
|
|
|
|
{
|
|
|
|
nbytes += status;
|
|
|
|
p = (BYTE*) &buffer[nbytes];
|
|
|
|
}
|
|
|
|
else if (status == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
http_response_free(http_response);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-11-14 02:02:01 +04:00
|
|
|
header_end = strstr((char*) buffer, "\r\n\r\n");
|
|
|
|
|
2012-11-17 12:45:15 +04:00
|
|
|
if (header_end)
|
|
|
|
{
|
|
|
|
header_end += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("http_response_recv: invalid response:\n");
|
|
|
|
winpr_HexDump(buffer, status);
|
2012-11-14 03:57:46 +04:00
|
|
|
http_response_free(http_response);
|
|
|
|
return NULL;
|
2012-11-17 12:45:15 +04:00
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
if (header_end != NULL)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
char* line;
|
|
|
|
|
|
|
|
header_end[0] = '\0';
|
|
|
|
header_end[1] = '\0';
|
|
|
|
content = &header_end[2];
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
line = (char*) buffer;
|
|
|
|
|
|
|
|
while ((line = strstr(line, "\r\n")) != NULL)
|
|
|
|
{
|
|
|
|
line++;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
http_response->count = count;
|
2012-10-09 07:21:26 +04:00
|
|
|
http_response->lines = (char**) malloc(sizeof(char*) * http_response->count);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
count = 0;
|
|
|
|
line = strtok((char*) buffer, "\r\n");
|
|
|
|
|
|
|
|
while (line != NULL)
|
|
|
|
{
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->lines[count] = _strdup(line);
|
2012-04-17 00:21:46 +04:00
|
|
|
line = strtok(NULL, "\r\n");
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
http_response_parse_header(http_response);
|
|
|
|
|
|
|
|
if (http_response->ContentLength > 0)
|
|
|
|
{
|
2012-10-09 07:42:01 +04:00
|
|
|
http_response->Content = _strdup(content);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2012-04-19 19:29:53 +04:00
|
|
|
|
|
|
|
if ((length - nbytes) <= 0)
|
|
|
|
{
|
|
|
|
length *= 2;
|
2012-10-09 07:21:26 +04:00
|
|
|
buffer = realloc(buffer, length);
|
2012-10-09 11:01:37 +04:00
|
|
|
p = (BYTE*) &buffer[nbytes];
|
2012-04-19 19:29:53 +04:00
|
|
|
}
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(buffer);
|
2012-05-06 08:53:07 +04:00
|
|
|
|
2012-04-17 00:21:46 +04:00
|
|
|
return http_response;
|
|
|
|
}
|
|
|
|
|
|
|
|
HttpResponse* http_response_new()
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
HttpResponse* http_response;
|
|
|
|
|
|
|
|
http_response = (HttpResponse*) malloc(sizeof(HttpResponse));
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
if (http_response != NULL)
|
|
|
|
{
|
2012-11-22 05:21:08 +04:00
|
|
|
ZeroMemory(http_response, sizeof(HttpResponse));
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return http_response;
|
|
|
|
}
|
|
|
|
|
|
|
|
void http_response_free(HttpResponse* http_response)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (http_response != NULL)
|
|
|
|
{
|
|
|
|
for (i = 0; i < http_response->count; i++)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response->lines[i]);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response->lines);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response->ReasonPhrase);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response->AuthParam);
|
|
|
|
free(http_response->AuthScheme);
|
|
|
|
free(http_response->Authorization);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
|
|
|
if (http_response->ContentLength > 0)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response->Content);
|
2012-04-17 00:21:46 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
free(http_response);
|
2012-04-17 00:21:46 +04:00
|
|
|
}
|
|
|
|
}
|