usbloadergx/source/network/networkops.cpp

431 lines
10 KiB
C++
Raw Normal View History

/****************************************************************************
* Network Operations
* for USB Loader GX
*
* HTTP operations
* Written by dhewg/bushing modified by dimok
****************************************************************************/
#include <stdio.h>
#include <string.h>
#include <ogcsys.h>
#include <ogc/machine/processor.h>
#include "prompts/PromptWindows.h"
#include "language/gettext.h"
#include "settings/CSettings.h"
#include "main.h"
#include "http.h"
#include "svnrev.h"
#include "buildtype.h"
#include "update.h"
#define PORT 4299
/*** Incomming filesize ***/
u32 infilesize = 0;
u32 uncfilesize = 0;
bool updateavailable = false;
s32 connection;
static s32 socket;
static bool updatechecked = false;
static bool networkinitialized = false;
static bool checkincomming = false;
static bool waitforanswer = false;
static char IP[16];
char incommingIP[50];
char wiiloadVersion[2];
static lwp_t networkthread = LWP_THREAD_NULL;
static bool networkHalt = true;
/****************************************************************************
* Initialize_Network
***************************************************************************/
2010-09-24 02:48:03 +02:00
void Initialize_Network(void)
{
2010-09-24 02:48:03 +02:00
if (networkinitialized) return;
s32 result;
2010-09-24 02:48:03 +02:00
result = if_config(IP, NULL, NULL, true);
2010-09-24 02:48:03 +02:00
if (result < 0)
{
networkinitialized = false;
return;
}
else
{
networkinitialized = true;
return;
}
}
/****************************************************************************
* Check if network was initialised
***************************************************************************/
2010-09-24 02:48:03 +02:00
bool IsNetworkInit(void)
{
return networkinitialized;
}
/****************************************************************************
* Get network IP
***************************************************************************/
2010-09-24 02:48:03 +02:00
char * GetNetworkIP(void)
{
return IP;
}
/****************************************************************************
* Get incomming IP
***************************************************************************/
2010-09-24 02:48:03 +02:00
char * GetIncommingIP(void)
{
return incommingIP;
}
/****************************************************************************
* Get network IP
***************************************************************************/
bool ShutdownWC24()
{
bool onlinefix = IsNetworkInit();
2010-09-24 02:48:03 +02:00
if (onlinefix)
{
s32 kd_fd, ret;
STACK_ALIGN( u8, kd_buf, 0x20, 32 );
2010-09-24 02:48:03 +02:00
kd_fd = IOS_Open("/dev/net/kd/request", 0);
if (kd_fd >= 0)
{
2010-09-24 02:48:03 +02:00
ret = IOS_Ioctl(kd_fd, 7, NULL, 0, kd_buf, 0x20);
if (ret >= 0) onlinefix = false; // fixed no IOS reload needed
IOS_Close(kd_fd);
}
}
return onlinefix;
}
2010-09-24 02:48:03 +02:00
s32 network_request(const char * request, char * filename)
{
char buf[1024];
char *ptr = NULL;
u32 cnt, size;
s32 ret;
/* Send request */
2010-09-24 02:48:03 +02:00
ret = net_send(connection, request, strlen(request), 0);
if (ret < 0) return ret;
/* Clear buffer */
2010-09-24 02:48:03 +02:00
memset(buf, 0, sizeof(buf));
/* Read HTTP header */
2010-09-24 02:48:03 +02:00
for (cnt = 0; !strstr(buf, "\r\n\r\n"); cnt++)
if (net_recv(connection, buf + cnt, 1, 0) <= 0) return -1;
/* HTTP request OK? */
2010-09-24 02:48:03 +02:00
if (!strstr(buf, "HTTP/1.1 200 OK")) return -1;
2010-09-24 02:48:03 +02:00
if (filename)
{
/* Get filename */
2010-09-24 02:48:03 +02:00
ptr = strstr(buf, "filename=\"");
2010-09-24 02:48:03 +02:00
if (ptr)
{
2010-09-24 02:48:03 +02:00
ptr += sizeof("filename=\"") - 1;
2010-09-24 02:48:03 +02:00
for (cnt = 0; ptr[cnt] != '\r' && ptr[cnt] != '\n' && ptr[cnt] != '"'; cnt++)
{
filename[cnt] = ptr[cnt];
2010-09-24 02:48:03 +02:00
filename[cnt + 1] = '\0';
}
}
}
/* Retrieve content size */
2010-09-24 02:48:03 +02:00
ptr = strstr(buf, "Content-Length:");
if (!ptr) return -1;
2010-09-24 02:48:03 +02:00
sscanf(ptr, "Content-Length: %u", &size);
return size;
}
2010-09-24 02:48:03 +02:00
s32 network_read(u8 *buf, u32 len)
{
u32 read = 0;
s32 ret = -1;
/* Data to be read */
2010-09-24 02:48:03 +02:00
while (read < len)
{
/* Read network data */
2010-09-24 02:48:03 +02:00
ret = net_read(connection, buf + read, len - read);
if (ret < 0) return ret;
/* Read finished */
2010-09-24 02:48:03 +02:00
if (!ret) break;
/* Increment read variable */
read += ret;
}
return read;
}
/****************************************************************************
* Download request
***************************************************************************/
2010-09-24 02:48:03 +02:00
s32 download_request(const char * url, char * filename)
{
//Check if the url starts with "http://", if not it is not considered a valid url
2010-09-24 02:48:03 +02:00
if (strncmp(url, "http://", strlen("http://")) != 0)
{
return -1;
}
//Locate the path part of the url by searching for '/' past "http://"
2010-09-24 02:48:03 +02:00
char *path = strchr(url + strlen("http://"), '/');
//At the very least the url has to end with '/', ending with just a domain is invalid
2010-09-24 02:48:03 +02:00
if (path == NULL)
{
return -1;
}
//Extract the domain part out of the url
2010-09-24 02:48:03 +02:00
int domainlength = path - url - strlen("http://");
2010-09-24 02:48:03 +02:00
if (domainlength == 0)
{
return -1;
}
char domain[domainlength + 1];
2010-09-24 02:48:03 +02:00
strlcpy(domain, url + strlen("http://"), domainlength + 1);
2010-09-24 02:48:03 +02:00
connection = GetConnection(domain);
if (connection < 0)
{
return -1;
}
//Form a nice request header to send to the webserver
2010-09-24 02:48:03 +02:00
char header[strlen(path) + strlen(domain) + strlen(url) + 100];
sprintf(header, "GET %s HTTP/1.1\r\nHost: %s\r\nReferer: %s\r\nConnection: close\r\n\r\n", path, domain, url);
2010-09-24 02:48:03 +02:00
s32 filesize = network_request(header, filename);
return filesize;
}
void CloseConnection()
{
2010-09-24 02:48:03 +02:00
net_close(connection);
2010-09-24 02:48:03 +02:00
if (waitforanswer)
{
2010-09-24 02:48:03 +02:00
net_close(socket);
waitforanswer = false;
}
}
/****************************************************************************
* NetworkWait
***************************************************************************/
int NetworkWait()
{
2010-09-24 02:48:03 +02:00
if (!checkincomming) return -3;
struct sockaddr_in sin;
struct sockaddr_in client_address;
2010-09-24 02:48:03 +02:00
socklen_t addrlen = sizeof(client_address);
//Open socket
2010-09-24 02:48:03 +02:00
socket = net_socket(AF_INET, SOCK_STREAM, IPPROTO_IP);
2010-09-24 02:48:03 +02:00
if (socket == INVALID_SOCKET)
{
return socket;
}
sin.sin_family = AF_INET;
sin.sin_port = htons( PORT );
sin.sin_addr.s_addr = htonl( INADDR_ANY );
2010-09-24 02:48:03 +02:00
if (net_bind(socket, (struct sockaddr*) &sin, sizeof(sin)) < 0)
{
2010-09-24 02:48:03 +02:00
net_close(socket);
return -1;
}
2010-09-24 02:48:03 +02:00
if (net_listen(socket, 3) < 0)
{
2010-09-24 02:48:03 +02:00
net_close(socket);
return -1;
}
2010-09-24 02:48:03 +02:00
connection = net_accept(socket, (struct sockaddr*) &client_address, &addrlen);
2010-09-24 02:48:03 +02:00
sprintf(incommingIP, "%s", inet_ntoa(client_address.sin_addr));
2010-09-24 02:48:03 +02:00
if (connection < 0)
{
2010-09-24 02:48:03 +02:00
net_close(connection);
net_close(socket);
return -4;
}
else
{
unsigned char haxx[9];
//skip haxx
2010-09-24 02:48:03 +02:00
net_read(connection, &haxx, 8);
wiiloadVersion[0] = haxx[4];
wiiloadVersion[1] = haxx[5];
2010-09-24 02:48:03 +02:00
net_read(connection, &infilesize, 4);
2010-09-24 02:48:03 +02:00
if (haxx[4] > 0 || haxx[5] > 4)
{
2010-09-24 02:48:03 +02:00
net_read(connection, &uncfilesize, 4); // Compressed protocol, read another 4 bytes
}
waitforanswer = true;
checkincomming = false;
networkHalt = true;
}
return 1;
}
/****************************************************************************
* Update check
***************************************************************************/
int CheckUpdate()
{
2010-09-24 02:48:03 +02:00
if (!networkinitialized) return -1;
int revnumber = 0;
2010-09-24 02:48:03 +02:00
int currentrev = atoi(GetRev());
2010-09-24 02:48:03 +02:00
if (Settings.beta_upgrades)
{
revnumber = CheckForBetaUpdate();
}
else
{
#ifdef FULLCHANNEL
struct block file = downloadfile( "http://www.techjawa.com/usbloadergx/wadrev.txt" );
#else
2010-09-24 02:48:03 +02:00
struct block file = downloadfile("http://www.techjawa.com/usbloadergx/rev.txt");
#endif
char revtxt[10];
2010-09-24 02:48:03 +02:00
u8 i;
if (file.data != NULL)
{
2010-09-24 02:48:03 +02:00
for (i = 0; i < 9 || i < file.size; i++)
revtxt[i] = file.data[i];
revtxt[i] = 0;
2010-09-24 02:48:03 +02:00
revnumber = atoi(revtxt);
free(file.data);
}
}
2010-09-24 02:48:03 +02:00
if (revnumber > currentrev)
return revnumber;
2010-09-24 02:48:03 +02:00
else return -1;
}
/****************************************************************************
* HaltNetwork
***************************************************************************/
void HaltNetworkThread()
{
networkHalt = true;
checkincomming = false;
2010-09-24 02:48:03 +02:00
if (waitforanswer) CloseConnection();
// wait for thread to finish
2010-09-24 02:48:03 +02:00
while (!LWP_ThreadIsSuspended(networkthread))
usleep(100);
}
/****************************************************************************
* ResumeNetworkThread
***************************************************************************/
void ResumeNetworkThread()
{
networkHalt = false;
2010-09-24 02:48:03 +02:00
LWP_ResumeThread(networkthread);
}
/****************************************************************************
* Resume NetworkWait
***************************************************************************/
void ResumeNetworkWait()
{
networkHalt = true;
checkincomming = true;
waitforanswer = true;
infilesize = 0;
connection = -1;
2010-09-24 02:48:03 +02:00
LWP_ResumeThread(networkthread);
}
/*********************************************************************************
* Networkthread for background network initialize and update check with idle prio
*********************************************************************************/
2010-09-24 02:48:03 +02:00
static void * networkinitcallback(void *arg)
{
2010-09-24 02:48:03 +02:00
while (1)
{
2010-09-24 02:48:03 +02:00
if (!checkincomming && networkHalt) LWP_SuspendThread(networkthread);
Initialize_Network();
2010-09-24 02:48:03 +02:00
if (networkinitialized == true && updatechecked == false)
{
2010-09-24 02:48:03 +02:00
if (CheckUpdate() > 0) updateavailable = true;
//suspend thread
updatechecked = true;
networkHalt = true;
checkincomming = false;
}
2010-09-24 02:48:03 +02:00
if (checkincomming) NetworkWait();
}
return NULL;
}
/****************************************************************************
* InitNetworkThread with priority 0 (idle)
***************************************************************************/
void InitNetworkThread()
{
2010-09-24 02:48:03 +02:00
LWP_CreateThread(&networkthread, networkinitcallback, NULL, NULL, 16384, 0);
}
/****************************************************************************
* ShutdownThread
***************************************************************************/
void ShutdownNetworkThread()
{
2010-09-24 02:48:03 +02:00
LWP_JoinThread(networkthread, NULL);
networkthread = LWP_THREAD_NULL;
}