2010-12-31 00:49:22 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2010
|
|
|
|
* by Dimok
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* for WiiXplorer 2010
|
|
|
|
***************************************************************************/
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogc/mutex.h>
|
|
|
|
#include <ogc/system.h>
|
|
|
|
#include <sdcard/wiisd_io.h>
|
|
|
|
#include <sdcard/gcsd.h>
|
2011-02-05 22:06:52 +01:00
|
|
|
#include "settings/CSettings.h"
|
2010-12-31 00:49:22 +01:00
|
|
|
#include "usbloader/usbstorage2.h"
|
|
|
|
#include "DeviceHandler.hpp"
|
|
|
|
#include "usbloader/wbfs.h"
|
2011-02-05 22:06:52 +01:00
|
|
|
#include "system/IosLoader.h"
|
2010-12-31 00:49:22 +01:00
|
|
|
|
|
|
|
DeviceHandler * DeviceHandler::instance = NULL;
|
|
|
|
|
|
|
|
DeviceHandler::~DeviceHandler()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
UnMountAll();
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DeviceHandler * DeviceHandler::Instance()
|
|
|
|
{
|
|
|
|
if (instance == NULL)
|
|
|
|
{
|
|
|
|
instance = new DeviceHandler();
|
|
|
|
}
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceHandler::DestroyInstance()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(instance)
|
|
|
|
{
|
|
|
|
delete instance;
|
|
|
|
}
|
|
|
|
instance = NULL;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DeviceHandler::MountAll()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
bool result = false;
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
for(u32 i = SD; i < MAXDEVICES; i++)
|
|
|
|
{
|
|
|
|
if(Mount(i))
|
|
|
|
result = true;
|
|
|
|
}
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return result;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceHandler::UnMountAll()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
for(u32 i = SD; i < MAXDEVICES; i++)
|
|
|
|
UnMount(i);
|
|
|
|
|
|
|
|
if(sd)
|
|
|
|
delete sd;
|
|
|
|
if(usb0)
|
|
|
|
delete usb0;
|
|
|
|
if(usb1)
|
|
|
|
delete usb1;
|
|
|
|
|
|
|
|
sd = NULL;
|
|
|
|
usb0 = NULL;
|
|
|
|
usb1 = NULL;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DeviceHandler::Mount(int dev)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(dev == SD)
|
|
|
|
return MountSD();
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
else if(dev >= USB1 && dev <= USB8)
|
|
|
|
return MountUSB(dev-USB1);
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return false;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DeviceHandler::IsInserted(int dev)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(dev == SD)
|
|
|
|
return SD_Inserted() && sd->IsMounted(0);
|
|
|
|
|
|
|
|
else if(dev >= USB1 && dev <= USB8)
|
|
|
|
{
|
|
|
|
int portPart = PartitionToPortPartition(dev-USB1);
|
|
|
|
PartitionHandle *usb = instance->GetUSBHandleFromPartition(dev-USB1);
|
|
|
|
if(usb)
|
|
|
|
return usb->IsMounted(portPart);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceHandler::UnMount(int dev)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(dev == SD)
|
|
|
|
UnMountSD();
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
else if(dev >= USB1 && dev <= USB8)
|
|
|
|
UnMountUSB(dev-USB1);
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DeviceHandler::MountSD()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!sd)
|
|
|
|
sd = new PartitionHandle(&__io_wiisd);
|
|
|
|
|
|
|
|
if(sd->GetPartitionCount() < 1)
|
|
|
|
{
|
|
|
|
delete sd;
|
|
|
|
sd = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Mount only one SD Partition
|
|
|
|
return sd->Mount(0, DeviceName[SD], true);
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
2010-12-31 14:13:14 +01:00
|
|
|
static inline bool USBSpinUp()
|
2010-12-31 00:49:22 +01:00
|
|
|
{
|
2013-03-17 14:48:15 +01:00
|
|
|
bool started0 = false;
|
|
|
|
bool started1 = false;
|
2011-07-26 00:28:22 +02:00
|
|
|
int retries = 400;
|
|
|
|
|
|
|
|
const DISC_INTERFACE * handle0 = NULL;
|
|
|
|
const DISC_INTERFACE * handle1 = NULL;
|
|
|
|
if(Settings.USBPort == 0 || Settings.USBPort == 2)
|
|
|
|
handle0 = DeviceHandler::GetUSB0Interface();
|
|
|
|
if(Settings.USBPort == 1 || Settings.USBPort == 2)
|
|
|
|
handle1 = DeviceHandler::GetUSB1Interface();
|
|
|
|
|
|
|
|
// wait 20 sec for the USB to spin up...stupid slow ass HDD
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if(handle0)
|
|
|
|
started0 = (handle0->startup() && handle0->isInserted());
|
|
|
|
|
|
|
|
if(handle1)
|
|
|
|
started1 = (handle1->startup() && handle1->isInserted());
|
|
|
|
|
2013-03-17 14:48:15 +01:00
|
|
|
if( (!handle0 || started0)
|
|
|
|
&& (!handle1 || started1)) {
|
|
|
|
break;
|
|
|
|
}
|
2011-07-26 00:28:22 +02:00
|
|
|
usleep(50000);
|
|
|
|
}
|
|
|
|
while(--retries > 0);
|
|
|
|
|
2013-03-17 14:48:15 +01:00
|
|
|
return (started0 || started1);
|
2010-12-31 14:13:14 +01:00
|
|
|
}
|
|
|
|
|
2011-06-22 19:57:37 +02:00
|
|
|
bool DeviceHandler::MountUSB(int pos)
|
2011-02-05 22:06:52 +01:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!usb0 && !usb1)
|
|
|
|
return false;
|
2011-02-05 22:06:52 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
if(pos >= GetUSBPartitionCount())
|
|
|
|
return false;
|
2011-02-05 22:06:52 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
int portPart = PartitionToPortPartition(pos);
|
2011-02-05 22:06:52 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
if(PartitionToUSBPort(pos) == 0 && usb0)
|
|
|
|
return usb0->Mount(portPart, DeviceName[USB1+pos]);
|
|
|
|
else if(usb1)
|
|
|
|
return usb1->Mount(portPart, DeviceName[USB1+pos]);
|
2011-02-05 22:06:52 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return false;
|
2011-02-05 22:06:52 +01:00
|
|
|
}
|
|
|
|
|
2011-06-22 19:57:37 +02:00
|
|
|
bool DeviceHandler::MountAllUSB(bool spinup)
|
2010-12-31 14:13:14 +01:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(spinup && !USBSpinUp())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(!usb0 && (Settings.USBPort == 0 || Settings.USBPort == 2))
|
|
|
|
usb0 = new PartitionHandle(GetUSB0Interface());
|
2013-10-01 23:13:08 +02:00
|
|
|
if(!usb1 && (Settings.USBPort == 1 || Settings.USBPort == 2) && IOS_GetVersion() >= 200)
|
2011-07-26 00:28:22 +02:00
|
|
|
usb1 = new PartitionHandle(GetUSB1Interface());
|
|
|
|
|
|
|
|
if(usb0 && usb0->GetPartitionCount() < 1)
|
|
|
|
{
|
|
|
|
delete usb0;
|
|
|
|
usb0 = NULL;
|
|
|
|
}
|
|
|
|
if(usb1 && usb1->GetPartitionCount() < 1)
|
|
|
|
{
|
|
|
|
delete usb1;
|
|
|
|
usb1 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
int partCount = GetUSBPartitionCount();
|
|
|
|
|
|
|
|
for(int i = 0; i < partCount; i++)
|
|
|
|
{
|
|
|
|
if(MountUSB(i))
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
2011-06-22 19:57:37 +02:00
|
|
|
bool DeviceHandler::MountUSBPort1(bool spinup)
|
2010-12-31 00:49:22 +01:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(spinup && !USBSpinUp())
|
|
|
|
return false;
|
|
|
|
|
2013-10-01 23:13:08 +02:00
|
|
|
if(!usb1 && (Settings.USBPort == 1 || Settings.USBPort == 2) && IOS_GetVersion() >= 200)
|
2011-07-26 00:28:22 +02:00
|
|
|
usb1 = new PartitionHandle(GetUSB1Interface());
|
|
|
|
|
|
|
|
if(usb1 && usb1->GetPartitionCount() < 1)
|
|
|
|
{
|
|
|
|
delete usb1;
|
|
|
|
usb1 = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
int partCount = GetUSBPartitionCount();
|
|
|
|
int partCount0 = 0;
|
|
|
|
if(usb0)
|
|
|
|
partCount0 = usb0->GetPartitionCount();
|
|
|
|
|
|
|
|
for(int i = partCount0; i < partCount; i++)
|
|
|
|
{
|
|
|
|
if(MountUSB(i))
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceHandler::UnMountUSB(int pos)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(pos >= GetUSBPartitionCount())
|
|
|
|
return;
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
int portPart = PartitionToPortPartition(pos);
|
2011-02-05 22:06:52 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
if(PartitionToUSBPort(pos) == 0 && usb0)
|
|
|
|
return usb0->UnMount(portPart);
|
|
|
|
else if(usb1)
|
|
|
|
return usb1->UnMount(portPart);
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceHandler::UnMountAllUSB()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
int partCount = GetUSBPartitionCount();
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
for(int i = 0; i < partCount; i++)
|
|
|
|
UnMountUSB(i);
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
delete usb0;
|
|
|
|
usb0 = NULL;
|
|
|
|
delete usb1;
|
|
|
|
usb1 = NULL;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int DeviceHandler::PathToDriveType(const char * path)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!path)
|
|
|
|
return -1;
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
for(int i = SD; i < MAXDEVICES; i++)
|
|
|
|
{
|
2011-07-26 10:57:12 +02:00
|
|
|
if(strncasecmp(path, DeviceName[i], strlen(DeviceName[i])) == 0)
|
2011-07-26 00:28:22 +02:00
|
|
|
return i;
|
|
|
|
}
|
2010-12-31 00:49:22 +01:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return -1;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char * DeviceHandler::GetFSName(int dev)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(dev == SD && DeviceHandler::instance->sd)
|
|
|
|
{
|
|
|
|
return DeviceHandler::instance->sd->GetFSName(0);
|
|
|
|
}
|
|
|
|
else if(dev >= USB1 && dev <= USB8)
|
|
|
|
{
|
|
|
|
int partCount0 = 0;
|
|
|
|
int partCount1 = 0;
|
|
|
|
if(DeviceHandler::instance->usb0)
|
|
|
|
partCount0 += DeviceHandler::instance->usb0->GetPartitionCount();
|
|
|
|
if(DeviceHandler::instance->usb1)
|
|
|
|
partCount1 += DeviceHandler::instance->usb1->GetPartitionCount();
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
if(dev-USB1 < partCount0 && DeviceHandler::instance->usb0)
|
2011-07-26 00:28:22 +02:00
|
|
|
return DeviceHandler::instance->usb0->GetFSName(dev-USB1);
|
|
|
|
else if(DeviceHandler::instance->usb1)
|
|
|
|
return DeviceHandler::instance->usb1->GetFSName(dev-USB1-partCount0);
|
|
|
|
}
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
return "";
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
|
|
|
|
2012-07-16 18:07:24 +02:00
|
|
|
const char * DeviceHandler::GetDevicePrefix(const char * path)
|
|
|
|
{
|
|
|
|
if(PathToDriveType(path) == -1)
|
|
|
|
return "";
|
|
|
|
return DeviceName[PathToDriveType(path)];
|
|
|
|
}
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
int DeviceHandler::GetFilesystemType(int dev)
|
2010-12-31 00:49:22 +01:00
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!instance)
|
|
|
|
return -1;
|
|
|
|
|
2011-07-26 10:57:12 +02:00
|
|
|
const char *FSName = GetFSName(dev);
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!FSName) return -1;
|
|
|
|
|
|
|
|
if(strncmp(FSName, "WBFS", 4) == 0)
|
|
|
|
return PART_FS_WBFS;
|
|
|
|
else if(strncmp(FSName, "FAT", 3) == 0)
|
|
|
|
return PART_FS_FAT;
|
|
|
|
else if(strncmp(FSName, "NTFS", 4) == 0)
|
|
|
|
return PART_FS_NTFS;
|
|
|
|
else if(strncmp(FSName, "LINUX", 4) == 0)
|
|
|
|
return PART_FS_EXT;
|
|
|
|
|
|
|
|
return -1;
|
2010-12-31 00:49:22 +01:00
|
|
|
}
|
2011-06-22 19:57:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
u16 DeviceHandler::GetUSBPartitionCount()
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!instance)
|
|
|
|
return 0;
|
2011-06-22 19:57:37 +02:00
|
|
|
|
|
|
|
u16 partCount0 = 0;
|
|
|
|
u16 partCount1 = 0;
|
|
|
|
if(instance->usb0)
|
|
|
|
partCount0 = instance->usb0->GetPartitionCount();
|
|
|
|
if(instance->usb1)
|
|
|
|
partCount1 = instance->usb1->GetPartitionCount();
|
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
return partCount0+partCount1;
|
2011-06-22 19:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int DeviceHandler::PartitionToUSBPort(int part)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!DeviceHandler::instance)
|
|
|
|
return 0;
|
2011-06-22 19:57:37 +02:00
|
|
|
|
|
|
|
u16 partCount0 = 0;
|
|
|
|
if(DeviceHandler::instance->usb0)
|
|
|
|
partCount0 = instance->usb0->GetPartitionCount();
|
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!instance->usb0 || part >= partCount0)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2011-06-22 19:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int DeviceHandler::PartitionToPortPartition(int part)
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!DeviceHandler::instance)
|
|
|
|
return 0;
|
2011-06-22 19:57:37 +02:00
|
|
|
|
|
|
|
u16 partCount0 = 0;
|
|
|
|
if(instance->usb0)
|
|
|
|
partCount0 = instance->usb0->GetPartitionCount();
|
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
if(!instance->usb0 || part >= partCount0)
|
|
|
|
return part-partCount0;
|
|
|
|
else
|
|
|
|
return part;
|
2011-06-22 19:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PartitionHandle *DeviceHandler::GetUSBHandleFromPartition(int part) const
|
|
|
|
{
|
2011-07-26 00:28:22 +02:00
|
|
|
if(PartitionToUSBPort(part) == 0)
|
|
|
|
return usb0;
|
|
|
|
else
|
|
|
|
return usb1;
|
2011-06-22 19:57:37 +02:00
|
|
|
}
|