snes9xgx/source/networkop.cpp

400 lines
8.6 KiB
C++
Raw Normal View History

/****************************************************************************
2010-01-27 23:20:37 +01:00
* Snes9x Nintendo Wii/Gamecube Port
*
2010-01-27 23:20:37 +01:00
* Tantric 2008-2010
*
* networkop.cpp
*
* Network and SMB support routines
****************************************************************************/
#include <network.h>
2010-08-18 02:15:25 +02:00
#include <malloc.h>
#include <ogc/lwp_watchdog.h>
#include <smb.h>
#include <mxml.h>
2010-03-22 00:43:54 +01:00
#include "snes9xgx.h"
2009-03-11 18:28:37 +01:00
#include "menu.h"
#include "fileop.h"
2009-06-12 09:47:42 +02:00
#include "filebrowser.h"
2010-03-22 00:43:54 +01:00
#include "utils/http.h"
#include "utils/unzip/unzip.h"
#include "utils/unzip/miniunz.h"
static bool networkInit = false;
static bool networkShareInit = false;
2010-08-18 02:15:25 +02:00
char wiiIP[16] = { 0 };
2011-02-03 04:44:45 +01:00
#ifdef HW_RVL
static int netHalt = 0;
static bool updateChecked = false; // true if checked for app update
static char updateURL[128]; // URL of app update
bool updateFound = false; // true if an app update was found
/****************************************************************************
* UpdateCheck
* Checks for an update for the application
***************************************************************************/
void UpdateCheck()
{
2010-07-27 19:29:37 +02:00
// we only check for an update if we have internet + SD/USB
if(updateChecked || !networkInit)
return;
2010-07-27 19:29:37 +02:00
if(!isMounted[DEVICE_SD] && !isMounted[DEVICE_USB])
return;
updateChecked = true;
u8 tmpbuffer[256];
2016-06-25 19:24:13 +02:00
if (http_request("http://www.wiimc.org/files/snes9xgx-update.xml", NULL, tmpbuffer, 256, SILENT) <= 0)
2010-07-27 19:29:37 +02:00
return;
mxml_node_t *xml;
mxml_node_t *item;
2010-07-27 19:29:37 +02:00
xml = mxmlLoadString(NULL, (char *)tmpbuffer, MXML_TEXT_CALLBACK);
2010-07-27 19:29:37 +02:00
if(!xml)
return;
// check settings version
item = mxmlFindElement(xml, xml, "app", "version", NULL, MXML_DESCEND);
if(item) // a version entry exists
{
const char * version = mxmlElementGetAttr(item, "version");
if(version && strlen(version) == 5)
{
int verMajor = version[0] - '0';
int verMinor = version[2] - '0';
int verPoint = version[4] - '0';
int curMajor = APPVERSION[0] - '0';
int curMinor = APPVERSION[2] - '0';
int curPoint = APPVERSION[4] - '0';
// check that the versioning is valid and is a newer version
if((verMajor >= 0 && verMajor <= 9 &&
verMinor >= 0 && verMinor <= 9 &&
verPoint >= 0 && verPoint <= 9) &&
(verMajor > curMajor ||
(verMajor == curMajor && verMinor > curMinor) ||
(verMajor == curMajor && verMinor == curMinor && verPoint > curPoint)))
{
2010-07-27 19:29:37 +02:00
item = mxmlFindElement(xml, xml, "file", NULL, NULL, MXML_DESCEND);
if(item)
{
2010-07-27 19:29:37 +02:00
const char * tmp = mxmlElementGetAttr(item, "url");
if(tmp)
{
2010-07-27 19:29:37 +02:00
snprintf(updateURL, 128, "%s", tmp);
updateFound = true;
2009-03-28 20:03:35 +01:00
}
}
}
}
}
2010-07-27 19:29:37 +02:00
mxmlDelete(xml);
}
static bool unzipArchive(char * zipfilepath, char * unzipfolderpath)
{
unzFile uf = unzOpen(zipfilepath);
if (uf==NULL)
return false;
if(chdir(unzipfolderpath)) // can't access dir
{
makedir(unzipfolderpath); // attempt to make dir
if(chdir(unzipfolderpath)) // still can't access dir
return false;
}
extractZip(uf,0,1,0);
unzCloseCurrentFile(uf);
return true;
}
bool DownloadUpdate()
{
bool result = false;
if(updateURL[0] == 0 || appPath[0] == 0 || !ChangeInterface(appPath, NOTSILENT))
{
ErrorPrompt("Update failed!");
updateFound = false; // updating is finished (successful or not!)
return false;
}
2009-01-25 08:09:37 +01:00
// stop checking if devices were removed/inserted
// since we're saving a file
HaltDeviceThread();
int device;
FindDevice(appPath, &device);
char updateFile[50];
sprintf(updateFile, "%s%s Update.zip", pathPrefix[device], APPNAME);
FILE * hfile = fopen (updateFile, "wb");
if (hfile)
{
if(http_request(updateURL, hfile, NULL, (1024*1024*10), NOTSILENT) > 0)
2010-07-22 09:21:40 +02:00
{
fclose (hfile);
result = unzipArchive(updateFile, (char *)pathPrefix[device]);
2010-07-22 09:21:40 +02:00
}
else
{
fclose (hfile);
}
remove(updateFile); // delete update file
}
// go back to checking if devices were inserted/removed
ResumeDeviceThread();
if(result)
InfoPrompt("Update successful!");
else
ErrorPrompt("Update failed!");
updateFound = false; // updating is finished (successful or not!)
return result;
}
/****************************************************************************
* InitializeNetwork
* Initializes the Wii/GameCube network interface
***************************************************************************/
2010-08-18 02:15:25 +02:00
static lwp_t networkthread = LWP_THREAD_NULL;
2011-02-06 06:38:15 +01:00
static u8 netstack[32768] ATTRIBUTE_ALIGN (32);
2010-08-18 02:15:25 +02:00
static void * netcb (void *arg)
{
2011-02-04 05:42:15 +01:00
s32 res=-1;
2010-08-18 02:15:25 +02:00
int retry;
2010-08-21 00:32:41 +02:00
int wait;
2011-03-13 06:48:20 +01:00
static bool prevInit = false;
2010-08-18 02:15:25 +02:00
while(netHalt != 2)
{
2011-02-04 05:42:15 +01:00
retry = 5;
while (retry>0 && (netHalt != 2))
2011-02-06 06:38:15 +01:00
{
2011-03-13 06:48:20 +01:00
if(prevInit)
2011-02-04 05:42:15 +01:00
{
int i;
2011-06-18 08:10:25 +02:00
net_deinit();
for(i=0; i < 400 && (netHalt != 2); i++) // 10 seconds to try to reset
2011-02-04 05:42:15 +01:00
{
res = net_get_status();
if(res != -EBUSY) // trying to init net so we can't kill the net
{
2011-02-06 06:38:15 +01:00
usleep(2000);
2011-02-04 05:42:15 +01:00
net_wc24cleanup(); //kill the net
2011-06-18 08:10:25 +02:00
prevInit=false; // net_wc24cleanup is called only once
usleep(20000);
2011-02-04 05:42:15 +01:00
break;
}
usleep(20000);
}
}
2011-03-13 06:48:20 +01:00
2011-02-06 06:38:15 +01:00
usleep(2000);
2010-08-21 00:32:41 +02:00
res = net_init_async(NULL, NULL);
if(res != 0)
2011-02-04 05:42:15 +01:00
{
sleep(1);
retry--;
continue;
}
2010-08-18 02:15:25 +02:00
res = net_get_status();
2011-02-06 06:38:15 +01:00
wait = 400; // only wait 8 sec
2011-02-04 05:42:15 +01:00
while (res == -EBUSY && wait > 0 && (netHalt != 2))
2010-08-18 02:15:25 +02:00
{
usleep(20000);
res = net_get_status();
2010-08-21 00:32:41 +02:00
wait--;
2010-08-18 02:15:25 +02:00
}
2011-02-04 05:42:15 +01:00
if(res==0) break;
2010-08-18 02:15:25 +02:00
retry--;
usleep(2000);
}
2010-08-21 00:32:41 +02:00
if (res == 0)
2010-08-18 02:15:25 +02:00
{
struct in_addr hostip;
hostip.s_addr = net_gethostip();
if (hostip.s_addr)
{
2010-08-18 02:15:25 +02:00
strcpy(wiiIP, inet_ntoa(hostip));
2011-03-13 06:48:20 +01:00
networkInit = true;
prevInit = true;
}
2010-08-18 02:15:25 +02:00
}
2011-02-04 05:42:15 +01:00
if(netHalt != 2) LWP_SuspendThread(networkthread);
2010-08-18 02:15:25 +02:00
}
return NULL;
}
/****************************************************************************
* StartNetworkThread
*
* Signals the network thread to resume, or creates a new thread
***************************************************************************/
void StartNetworkThread()
{
netHalt = 0;
if(networkthread == LWP_THREAD_NULL)
LWP_CreateThread(&networkthread, netcb, NULL, netstack, 8192, 40);
else
LWP_ResumeThread(networkthread);
}
/****************************************************************************
* StopNetworkThread
*
* Signals the network thread to stop
***************************************************************************/
void StopNetworkThread()
{
2011-02-06 06:38:15 +01:00
if(networkthread == LWP_THREAD_NULL || !LWP_ThreadIsSuspended(networkthread))
return;
2010-08-18 02:15:25 +02:00
netHalt = 2;
2011-02-06 06:38:15 +01:00
LWP_ResumeThread(networkthread);
2010-08-18 02:15:25 +02:00
// wait for thread to finish
LWP_JoinThread(networkthread, NULL);
networkthread = LWP_THREAD_NULL;
}
2009-03-11 18:28:37 +01:00
#endif
2010-08-18 02:15:25 +02:00
bool InitializeNetwork(bool silent)
{
#ifdef HW_RVL
2011-02-03 04:35:09 +01:00
StopNetworkThread();
if(networkInit && net_gethostip() > 0)
2010-08-18 02:15:25 +02:00
return true;
2011-02-03 04:35:09 +01:00
networkInit = false;
#else
if(networkInit)
return true;
#endif
2010-08-18 02:15:25 +02:00
int retry = 1;
while(retry)
{
ShowAction("Initializing network...");
#ifdef HW_RVL
2011-02-03 04:44:45 +01:00
u64 start = gettime();
2010-08-18 02:15:25 +02:00
StartNetworkThread();
2009-10-06 08:37:53 +02:00
2010-08-18 02:15:25 +02:00
while (!LWP_ThreadIsSuspended(networkthread))
{
usleep(50 * 1000);
2009-10-06 08:37:53 +02:00
2010-08-18 02:15:25 +02:00
if(diff_sec(start, gettime()) > 10) // wait for 10 seconds max for net init
2009-10-06 08:37:53 +02:00
break;
}
#else
networkInit = !(if_config(wiiIP, NULL, NULL, true, 10) < 0);
#endif
2009-10-06 08:37:53 +02:00
CancelAction();
2010-08-18 02:15:25 +02:00
2011-02-03 04:35:09 +01:00
if(networkInit || silent)
2010-08-18 02:15:25 +02:00
break;
retry = ErrorPromptRetry("Unable to initialize network!");
2011-02-04 05:42:15 +01:00
2011-02-10 19:08:12 +01:00
#ifdef HW_RVL
2011-02-04 05:42:15 +01:00
if(networkInit && net_gethostip() > 0)
2011-02-10 19:06:09 +01:00
#else
if(networkInit)
#endif
2011-02-04 05:42:15 +01:00
return true;
2010-08-18 02:15:25 +02:00
}
return networkInit;
}
void CloseShare()
{
if(networkShareInit)
2009-03-12 08:07:52 +01:00
smbClose("smb");
networkShareInit = false;
2010-03-15 08:41:40 +01:00
isMounted[DEVICE_SMB] = false;
}
/****************************************************************************
* Mount SMB Share
****************************************************************************/
bool
ConnectShare (bool silent)
{
2010-08-18 02:15:25 +02:00
if(!InitializeNetwork(silent))
return false;
if(networkShareInit)
return true;
2009-10-06 08:37:53 +02:00
int retry = 1;
int chkS = (strlen(GCSettings.smbshare) > 0) ? 0:1;
int chkI = (strlen(GCSettings.smbip) > 0) ? 0:1;
// check that all parameters have been set
2009-10-04 21:30:55 +02:00
if(chkS + chkI > 0)
{
if(!silent)
{
char msg[50];
char msg2[100];
2009-10-04 21:30:55 +02:00
if(chkS + chkI > 1) // more than one thing is wrong
sprintf(msg, "Check settings.xml.");
else if(chkS)
sprintf(msg, "Share name is blank.");
else if(chkI)
sprintf(msg, "Share IP is blank.");
sprintf(msg2, "Invalid network settings - %s", msg);
2009-03-11 18:28:37 +01:00
ErrorPrompt(msg2);
}
return false;
}
2009-10-06 08:37:53 +02:00
while(retry)
{
if(!silent)
ShowAction ("Connecting to network share...");
if(smbInit(GCSettings.smbuser, GCSettings.smbpwd, GCSettings.smbshare, GCSettings.smbip))
networkShareInit = true;
2009-10-06 08:37:53 +02:00
if(networkShareInit || silent)
break;
2009-10-06 08:37:53 +02:00
retry = ErrorPromptRetry("Failed to connect to network share.");
}
2009-10-06 08:37:53 +02:00
if(!silent)
CancelAction();
return networkShareInit;
}