2019-10-25 00:26:17 +02:00
|
|
|
/*
|
|
|
|
Code by blackb0x @ GBAtemp.net
|
|
|
|
This allows the Wii to download from servers that use SNI.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <network.h>
|
|
|
|
#include <ogc/lwp_watchdog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "https.h"
|
|
|
|
#include "gecko/gecko.hpp"
|
|
|
|
#include "picohttpparser.h"
|
|
|
|
|
|
|
|
u8 loop;
|
|
|
|
|
|
|
|
int https_write(HTTP_INFO *httpinfo, char *buffer, int len)
|
|
|
|
{
|
|
|
|
int ret, slen = 0;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (httpinfo->use_https)
|
|
|
|
ret = wolfSSL_write(httpinfo->ssl, &buffer[slen], len - slen);
|
|
|
|
else
|
|
|
|
ret = net_write(httpinfo->sock, &buffer[slen], len - slen);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
continue;
|
|
|
|
else if (ret <= 0)
|
2019-10-29 04:11:56 +01:00
|
|
|
return ret; // Timeout would return -1
|
2019-10-25 00:26:17 +02:00
|
|
|
|
|
|
|
slen += ret;
|
|
|
|
if (slen >= len)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return slen;
|
|
|
|
}
|
|
|
|
|
|
|
|
int https_read(HTTP_INFO *httpinfo, char *buffer, int len)
|
|
|
|
{
|
2019-10-29 04:11:56 +01:00
|
|
|
if (len > 8192)
|
|
|
|
len = 8192; // 16KB is the max on a Wii, but 8KB is safe
|
2019-10-25 00:26:17 +02:00
|
|
|
if (httpinfo->use_https)
|
|
|
|
return wolfSSL_read(httpinfo->ssl, buffer, len);
|
|
|
|
return net_read(httpinfo->sock, buffer, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void https_close(HTTP_INFO *httpinfo)
|
|
|
|
{
|
|
|
|
if (httpinfo->use_https)
|
|
|
|
{
|
|
|
|
if (wolfSSL_shutdown(httpinfo->ssl) == SSL_SHUTDOWN_NOT_DONE)
|
|
|
|
wolfSSL_shutdown(httpinfo->ssl);
|
|
|
|
wolfSSL_free(httpinfo->ssl);
|
|
|
|
wolfSSL_CTX_free(httpinfo->ctx);
|
|
|
|
}
|
|
|
|
net_close(httpinfo->sock);
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Closed socket and cleaned up\n");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_header_value(struct phr_header *headers, size_t num_headers, char *header)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i != num_headers; ++i)
|
|
|
|
{
|
|
|
|
char *header_name = strndup(headers[i].name, headers[i].name_len);
|
|
|
|
char *header_value = strndup(headers[i].value, headers[i].value_len);
|
|
|
|
if (strcasecmp(header_name, header) == 0)
|
|
|
|
return header_value;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 is_chunked(struct phr_header *headers, size_t num_headers)
|
|
|
|
{
|
|
|
|
char *header = get_header_value(headers, num_headers, "transfer-encoding");
|
|
|
|
if (header == NULL)
|
|
|
|
return 0;
|
|
|
|
return (strcasecmp(header, "chunked") == 0) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int read_chunked(HTTP_INFO *httpinfo, struct download *buffer, size_t start_pos)
|
|
|
|
{
|
|
|
|
struct phr_chunked_decoder decoder = {};
|
|
|
|
size_t capacity = 4096, rsize;
|
|
|
|
ssize_t rret, pret;
|
|
|
|
decoder.consume_trailer = 1;
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Data is chunked\n");
|
|
|
|
#endif
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (start_pos == capacity)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Increased buffer size\n");
|
|
|
|
#endif
|
|
|
|
capacity *= 2;
|
|
|
|
buffer->data = realloc(buffer->data, capacity);
|
|
|
|
assert(buffer->data != NULL);
|
|
|
|
}
|
|
|
|
while ((rret = https_read(httpinfo, buffer->data + start_pos, capacity - start_pos)) == -1 && errno == EINTR)
|
|
|
|
;
|
|
|
|
if (rret <= 0)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("IO error\n");
|
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
rsize = rret;
|
|
|
|
pret = phr_decode_chunked(&decoder, buffer->data + start_pos, &rsize);
|
|
|
|
if (pret == -1)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Parse error\n");
|
|
|
|
#endif
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
start_pos += rsize;
|
|
|
|
} while (pret == -2);
|
|
|
|
assert(pret >= 0);
|
|
|
|
buffer->size = start_pos;
|
|
|
|
buffer->data = realloc(buffer->data, buffer->size);
|
|
|
|
return start_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int read_all(HTTP_INFO *httpinfo, struct download *buffer, size_t start_pos)
|
|
|
|
{
|
|
|
|
size_t capacity = 4096;
|
|
|
|
ssize_t ret;
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Data is not chunked\n");
|
|
|
|
#endif
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (start_pos == capacity)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Increased buffer size\n");
|
|
|
|
#endif
|
|
|
|
capacity *= 2;
|
|
|
|
buffer->data = realloc(buffer->data, capacity);
|
|
|
|
assert(buffer->data != NULL);
|
|
|
|
}
|
|
|
|
while ((ret = https_read(httpinfo, buffer->data + start_pos, capacity - start_pos)) == -1 && errno == EINTR)
|
|
|
|
;
|
|
|
|
if (ret <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
start_pos += ret;
|
|
|
|
};
|
|
|
|
buffer->size = start_pos;
|
|
|
|
buffer->data = realloc(buffer->data, buffer->size);
|
|
|
|
return start_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int connect(char *host, u16 port)
|
|
|
|
{
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
s32 sock, ret;
|
|
|
|
u64 t;
|
|
|
|
|
|
|
|
u32 ipaddress = getipbynamecached(host);
|
|
|
|
if (ipaddress == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
sock = net_socket(AF_INET, SOCK_STREAM, IPPROTO_IP);
|
|
|
|
if (sock < 0)
|
|
|
|
return sock;
|
|
|
|
|
|
|
|
memset(&sin, 0, sizeof(struct sockaddr_in));
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_port = htons(port);
|
|
|
|
sin.sin_addr.s_addr = ipaddress;
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Connecting to %s (%s)\n", host, inet_ntoa(sin.sin_addr));
|
|
|
|
#endif
|
|
|
|
net_fcntl(sock, F_SETFL, 4);
|
|
|
|
t = gettime();
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (ticks_to_millisecs(diff_ticks(t, gettime())) > TCP_CONNECT_TIMEOUT)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("The connection has timed out\n");
|
|
|
|
#endif
|
|
|
|
net_close(sock);
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
ret = net_connect(sock, (struct sockaddr *)&sin, sizeof(sin));
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
if (ret == -EISCONN)
|
|
|
|
break;
|
|
|
|
if (ret == -EINPROGRESS || ret == -EALREADY)
|
|
|
|
{
|
|
|
|
usleep(20 * 1000);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
net_close(sock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
net_fcntl(sock, F_SETFL, 0);
|
|
|
|
// Set a read and write timeout
|
|
|
|
struct timeval timeout;
|
|
|
|
timeout.tv_sec = READ_WRITE_TIMEOUT;
|
|
|
|
net_setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout, sizeof(timeout));
|
|
|
|
net_setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, (char *)&timeout, sizeof(timeout));
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
void downloadfile(const char *url, struct download *buffer)
|
|
|
|
{
|
|
|
|
HTTP_INFO httpinfo;
|
|
|
|
memset(&httpinfo, 0, sizeof(HTTP_INFO));
|
|
|
|
// Always reset the size due to the image downloader looping
|
|
|
|
buffer->size = 0;
|
|
|
|
|
|
|
|
// Check if we're using HTTPS and set the path
|
|
|
|
char *path;
|
|
|
|
if (strncmp(url, "https://", 8) == 0)
|
|
|
|
{
|
|
|
|
httpinfo.use_https = 1;
|
|
|
|
path = strchr(url + 8, '/');
|
|
|
|
}
|
|
|
|
else if (strncmp(url, "http://", 7) == 0)
|
|
|
|
{
|
|
|
|
httpinfo.use_https = 0;
|
|
|
|
path = strchr(url + 7, '/');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return; // Prevents uninitialized warning
|
|
|
|
|
|
|
|
if (path == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Get the host
|
|
|
|
int domainlength = path - url - 7 - httpinfo.use_https;
|
|
|
|
char host[domainlength + 1];
|
|
|
|
strlcpy(host, url + 7 + httpinfo.use_https, domainlength + 1);
|
|
|
|
|
|
|
|
// Start connecting
|
|
|
|
if ((httpinfo.sock = connect(host, httpinfo.use_https ? 443 : 80)) < 0)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Failed to connect to %s\n", host);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
else
|
|
|
|
gprintf("Connected\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (httpinfo.use_https)
|
|
|
|
{
|
|
|
|
// Create a new SSL context and use the highest possible protocol version
|
|
|
|
if ((httpinfo.ctx = wolfSSL_CTX_new(wolfSSLv23_client_method())) == NULL)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Failed to create WOLFSSL_CTX\n");
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Don't verify certificates
|
|
|
|
wolfSSL_CTX_set_verify(httpinfo.ctx, WOLFSSL_VERIFY_NONE, 0);
|
|
|
|
// Enable SNI
|
|
|
|
if (wolfSSL_CTX_UseSNI(httpinfo.ctx, 0, host, strlen(host)) != WOLFSSL_SUCCESS)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Failed to set SNI\n");
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Create a new wolfSSL session
|
|
|
|
if ((httpinfo.ssl = wolfSSL_new(httpinfo.ctx)) == NULL)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("SSL session creation failed\n");
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Set the file descriptor
|
|
|
|
if (wolfSSL_set_fd(httpinfo.ssl, httpinfo.sock) != SSL_SUCCESS)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Failed to set SSL file descriptor\n");
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Initiate a handshake
|
|
|
|
if (wolfSSL_connect(httpinfo.ssl) != SSL_SUCCESS)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("SSL handshake failed\n");
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Cipher info
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
/*char ciphers[4096];
|
|
|
|
wolfSSL_get_ciphers(ciphers, (int)sizeof(ciphers));
|
|
|
|
gprintf("All supported ciphers: %s\n", ciphers);*/
|
|
|
|
WOLFSSL_CIPHER *cipher = wolfSSL_get_current_cipher(httpinfo.ssl);
|
|
|
|
gprintf("Using: %s - %s\n", wolfSSL_get_version(httpinfo.ssl), wolfSSL_CIPHER_get_name(cipher));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send our request
|
|
|
|
char request[2048];
|
|
|
|
char isgecko[36] = "Cookie: challenge=BitMitigate.com\r\n";
|
|
|
|
int ret, len;
|
|
|
|
if (strcmp(host, "www.geckocodes.org") != 0)
|
|
|
|
memset(isgecko, 0, sizeof(isgecko)); // Not geckocodes, so don't set a cookie
|
|
|
|
|
|
|
|
len = snprintf(request, 2048,
|
|
|
|
"GET %s HTTP/1.1\r\n"
|
|
|
|
"Host: %s\r\n"
|
|
|
|
"User-Agent: WiiFlow-Lite\r\n"
|
|
|
|
"Connection: close\r\n"
|
|
|
|
"%s"
|
|
|
|
"Pragma: no-cache\r\n"
|
|
|
|
"Cache-Control: no-cache\r\n\r\n",
|
|
|
|
path, host, isgecko);
|
|
|
|
if ((ret = https_write(&httpinfo, request, len)) != len)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("https_write error: %i\n", ret);
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we want a response
|
|
|
|
if (buffer->skip_response)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Sent request to %s and skipping response\n", host);
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the response
|
|
|
|
char response[4096];
|
|
|
|
struct phr_header headers[100];
|
|
|
|
int pret, minor_version, status;
|
|
|
|
size_t buflen = 0, prevbuflen = 0, num_headers, msg_len;
|
|
|
|
ssize_t rret;
|
|
|
|
const char *msg;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
// Read the response
|
|
|
|
while ((rret = https_read(&httpinfo, response + buflen, 1)) == -1 && errno == EINTR)
|
|
|
|
;
|
|
|
|
if (rret <= 0)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("rret error %i", rret);
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
prevbuflen = buflen;
|
|
|
|
buflen += rret;
|
|
|
|
// Parse the response
|
|
|
|
num_headers = sizeof(headers) / sizeof(headers[0]);
|
|
|
|
pret = phr_parse_response(response, buflen, &minor_version, &status, &msg, &msg_len, headers, &num_headers, prevbuflen);
|
|
|
|
if (pret > 0)
|
|
|
|
break; // Successfully parsed the response
|
|
|
|
else if (pret == -1)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("pret error %i", pret);
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Response is incomplete so continue the loop
|
|
|
|
assert(pret == -2);
|
|
|
|
if (buflen == sizeof(response))
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("buflen error %i\n", buflen);
|
|
|
|
#endif
|
|
|
|
https_close(&httpinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The website wants to redirect us
|
|
|
|
if (status == 301 || status == 302)
|
|
|
|
{
|
|
|
|
https_close(&httpinfo);
|
|
|
|
if (loop == REDIRECT_LIMIT)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Reached redirect limit");
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
loop++;
|
|
|
|
char *header = get_header_value(headers, num_headers, "location");
|
|
|
|
if (header == NULL)
|
|
|
|
return;
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Redirect #%i - %s\n", loop, header);
|
|
|
|
#endif
|
|
|
|
downloadfile(header, buffer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// It's not 301 or 302, so reset the loop
|
|
|
|
loop = 0;
|
|
|
|
// We got what we wanted
|
|
|
|
if (status == 200)
|
|
|
|
{
|
|
|
|
buffer->data = malloc(4096);
|
|
|
|
buffer->size = 4096;
|
|
|
|
memcpy(buffer->data, response + pret, buflen - pret);
|
|
|
|
// Determine how to read the data
|
|
|
|
if (is_chunked(headers, num_headers))
|
|
|
|
read_chunked(&httpinfo, buffer, buflen - pret);
|
|
|
|
else
|
|
|
|
read_all(&httpinfo, buffer, buflen - pret);
|
|
|
|
// Finished
|
|
|
|
https_close(&httpinfo);
|
|
|
|
#ifdef DEBUG_NETWORK
|
|
|
|
gprintf("Download size: %llu\n", buffer->size);
|
|
|
|
gprintf("Headers:\n");
|
|
|
|
for (size_t i = 0; i != num_headers; ++i)
|
|
|
|
gprintf("%.*s: %.*s\n", (int)headers[i].name_len, headers[i].name, (int)headers[i].value_len, headers[i].value);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Close on all other status codes
|
|
|
|
https_close(&httpinfo);
|
|
|
|
}
|