1 #include "include/usbld.h"
2 #include "include/lang.h"
3 #include "include/gui.h"
4 #include "include/supportbase.h"
5 #include "include/ethsupport.h"
6 #include "include/util.h"
7 #include "include/themes.h"
8 #include "include/textures.h"
9 #include "include/ioman.h"
10 #include "include/system.h"
12 extern void *smb_cdvdman_irx
;
13 extern int size_smb_cdvdman_irx
;
15 extern void *smb_pcmcia_cdvdman_irx
;
16 extern int size_smb_pcmcia_cdvdman_irx
;
18 extern void *ps2dev9_irx
;
19 extern int size_ps2dev9_irx
;
21 extern void *smsutils_irx
;
22 extern int size_smsutils_irx
;
24 extern void *smstcpip_irx
;
25 extern int size_smstcpip_irx
;
27 extern void *smsmap_irx
;
28 extern int size_smsmap_irx
;
30 extern void *smbman_irx
;
31 extern int size_smbman_irx
;
34 extern void *smb_mcemu_irx
;
35 extern int size_smb_mcemu_irx
;
38 static char *ethPrefix
= NULL
;
39 static int ethULSizePrev
= -2;
40 static unsigned char ethModifiedCDPrev
[8];
41 static unsigned char ethModifiedDVDPrev
[8];
42 static int ethGameCount
= 0;
43 static base_game_info_t
*ethGames
= NULL
;
45 // forward declaration
46 static item_list_t ethGameList
;
48 void ethSMBConnect(void) {
51 smbOpenShare_in_t openshare
;
53 // open tcp connection with the server / logon to SMB server
54 sprintf(logon
.serverIP
, "%d.%d.%d.%d", pc_ip
[0], pc_ip
[1], pc_ip
[2], pc_ip
[3]);
55 logon
.serverPort
= gPCPort
;
57 if (strlen(gPCPassword
) > 0) {
58 smbGetPasswordHashes_in_t passwd
;
59 smbGetPasswordHashes_out_t passwdhashes
;
61 // we'll try to generate hashed password first
62 strncpy(logon
.User
, gPCUserName
, 32);
63 strncpy(passwd
.password
, gPCPassword
, 32);
65 if (fileXioDevctl(ethPrefix
, SMB_DEVCTL_GETPASSWORDHASHES
, (void *)&passwd
, sizeof(passwd
), (void *)&passwdhashes
, sizeof(passwdhashes
)) == 0) {
66 // hash generated okay, can use
67 memcpy((void *)logon
.Password
, (void *)&passwdhashes
, sizeof(passwdhashes
));
68 logon
.PasswordType
= HASHED_PASSWORD
;
69 memcpy((void *)openshare
.Password
, (void *)&passwdhashes
, sizeof(passwdhashes
));
70 openshare
.PasswordType
= HASHED_PASSWORD
;
72 // failed hashing, failback to plaintext
73 strncpy(logon
.Password
, gPCPassword
, 32);
74 logon
.PasswordType
= PLAINTEXT_PASSWORD
;
75 strncpy(openshare
.Password
, gPCPassword
, 32);
76 openshare
.PasswordType
= PLAINTEXT_PASSWORD
;
79 strncpy(logon
.User
, gPCUserName
, 32);
80 logon
.PasswordType
= NO_PASSWORD
;
81 openshare
.PasswordType
= NO_PASSWORD
;
84 gNetworkStartup
= ERROR_ETH_SMB_LOGON
;
85 if (fileXioDevctl(ethPrefix
, SMB_DEVCTL_LOGON
, (void *)&logon
, sizeof(logon
), NULL
, 0) >= 0) {
86 gNetworkStartup
= ERROR_ETH_SMB_ECHO
;
88 // SMB server alive test
89 strcpy(echo
.echo
, "ALIVE ECHO TEST");
90 echo
.len
= strlen("ALIVE ECHO TEST");
92 if (fileXioDevctl(ethPrefix
, SMB_DEVCTL_ECHO
, (void *)&echo
, sizeof(echo
), NULL
, 0) >= 0) {
93 gNetworkStartup
= ERROR_ETH_SMB_OPENSHARE
;
95 // connect to the share
96 strcpy(openshare
.ShareName
, gPCShareName
);
98 if (fileXioDevctl(ethPrefix
, SMB_DEVCTL_OPENSHARE
, (void *)&openshare
, sizeof(openshare
), NULL
, 0) >= 0) {
107 int ethSMBDisconnect(void) {
111 ret
= fileXioDevctl(ethPrefix
, SMB_DEVCTL_CLOSESHARE
, NULL
, 0, NULL
, 0);
115 // logoff/close tcp connection from SMB server:
116 ret
= fileXioDevctl(ethPrefix
, SMB_DEVCTL_LOGOFF
, NULL
, 0, NULL
, 0);
123 static void ethInitSMB(void) {
129 sprintf(path
, "%sTHM", ethPrefix
);
130 thmAddElements(path
, "\\", ethGameList
.mode
);
132 sprintf(path
, "%sCFG", ethPrefix
);
133 checkCreateDir(path
);
136 sprintf(path
, "%sVMC", ethPrefix
);
137 checkCreateDir(path
);
141 static void ethLoadModules(void) {
143 char ipconfig
[IPCONFIG_MAX_LEN
] __attribute__((aligned(64)));
145 LOG("ethLoadModules()\n");
147 ipconfiglen
= sysSetIPConfig(ipconfig
);
149 gNetworkStartup
= ERROR_ETH_MODULE_PS2DEV9_FAILURE
;
150 if (sysLoadModuleBuffer(&ps2dev9_irx
, size_ps2dev9_irx
, 0, NULL
) >= 0) {
151 gNetworkStartup
= ERROR_ETH_MODULE_SMSUTILS_FAILURE
;
152 if (sysLoadModuleBuffer(&smsutils_irx
, size_smsutils_irx
, 0, NULL
) >= 0) {
153 gNetworkStartup
= ERROR_ETH_MODULE_SMSTCPIP_FAILURE
;
154 if (sysLoadModuleBuffer(&smstcpip_irx
, size_smstcpip_irx
, 0, NULL
) >= 0) {
155 gNetworkStartup
= ERROR_ETH_MODULE_SMSMAP_FAILURE
;
156 if (sysLoadModuleBuffer(&smsmap_irx
, size_smsmap_irx
, ipconfiglen
, ipconfig
) >= 0) {
157 gNetworkStartup
= ERROR_ETH_MODULE_SMBMAN_FAILURE
;
158 if (sysLoadModuleBuffer(&smbman_irx
, size_smbman_irx
, 0, NULL
) >= 0) {
159 LOG("ethLoadModules: modules loaded\n");
167 if (gNetworkStartup
!= 0)
168 setErrorMessage(_STR_NETWORK_STARTUP_ERROR
, gNetworkStartup
);
176 memset(ethModifiedCDPrev
, 0, 8);
177 memset(ethModifiedDVDPrev
, 0, 8);
180 gNetworkStartup
= ERROR_ETH_NOT_STARTED
;
182 ioPutRequest(IO_CUSTOM_SIMPLEACTION
, ðLoadModules
);
184 ethGameList
.enabled
= 1;
187 item_list_t
* ethGetObject(int initOnly
) {
188 if (initOnly
&& !ethGameList
.enabled
)
193 static int ethNeedsUpdate(void) {
196 if (gNetworkStartup
>= ERROR_ETH_SMB_LOGON
) {
198 if (gNetworkStartup
!= 0)
199 setErrorMessage(_STR_NETWORK_STARTUP_ERROR
, gNetworkStartup
);
202 if (gNetworkStartup
== 0) {
206 sprintf(path
, "%sCD", ethPrefix
);
207 if (fioGetstat(path
, &stat
) != 0)
208 memset(stat
.mtime
, 0, 8);
209 if (memcmp(ethModifiedCDPrev
, stat
.mtime
, 8)) {
210 memcpy(ethModifiedCDPrev
, stat
.mtime
, 8);
214 sprintf(path
, "%sDVD", ethPrefix
);
215 if (fioGetstat(path
, &stat
) != 0)
216 memset(stat
.mtime
, 0, 8);
217 if (memcmp(ethModifiedDVDPrev
, stat
.mtime
, 8)) {
218 memcpy(ethModifiedDVDPrev
, stat
.mtime
, 8);
222 if (!sbIsSameSize(ethPrefix
, ethULSizePrev
))
228 static int ethUpdateGameList(void) {
229 if (gNetworkStartup
!= 0)
232 sbReadList(ðGames
, ethPrefix
, ðULSizePrev
, ðGameCount
);
236 static int ethGetGameCount(void) {
240 static void* ethGetGame(int id
) {
241 return (void*) ðGames
[id
];
244 static char* ethGetGameName(int id
) {
245 return ethGames
[id
].name
;
248 static int ethGetGameNameLength(int id
) {
249 if (ethGames
[id
].isISO
)
250 return ISO_GAME_NAME_MAX
+ 1;
252 return UL_GAME_NAME_MAX
+ 1;
255 static char* ethGetGameStartup(int id
) {
256 return ethGames
[id
].startup
;
260 static void ethDeleteGame(int id
) {
261 sbDelete(ðGames
, ethPrefix
, "\\", ethGameCount
, id
);
265 static void ethRenameGame(int id
, char* newName
) {
266 sbRename(ðGames
, ethPrefix
, "\\", ethGameCount
, id
, newName
);
272 static int ethPrepareMcemu(base_game_info_t
* game
, config_set_t
* configSet
) {
276 int i
, j
, fd
, size_mcemu_irx
= 0;
277 smb_vmc_infos_t smb_vmc_infos
;
278 vmc_superblock_t vmc_superblock
;
280 configGetVMC(configSet
, vmc
[0], 0);
281 configGetVMC(configSet
, vmc
[1], 1);
284 if(!vmc
[i
][0]) // skip if empty
287 memset(&smb_vmc_infos
, 0, sizeof(smb_vmc_infos_t
));
288 memset(&vmc_superblock
, 0, sizeof(vmc_superblock_t
));
290 snprintf(vmc_path
, 255, "%s\\VMC\\%s.bin", ethPrefix
, vmc
[i
]);
292 fd
= fileXioOpen(vmc_path
, O_RDONLY
, 0666);
295 LOG("%s open\n", vmc_path
);
297 vmc_size
= fileXioLseek(fd
, 0, SEEK_END
);
298 fileXioLseek(fd
, 0, SEEK_SET
);
299 fileXioRead(fd
, (void*)&vmc_superblock
, sizeof(vmc_superblock_t
));
301 LOG("File size : 0x%X\n", vmc_size
);
302 LOG("Magic : %s\n", vmc_superblock
.magic
);
303 LOG("Card type : %d\n", vmc_superblock
.mc_type
);
305 if(!strncmp(vmc_superblock
.magic
, "Sony PS2 Memory Card Format", 27) && vmc_superblock
.mc_type
== 0x2) {
306 smb_vmc_infos
.flags
= vmc_superblock
.mc_flag
& 0xFF;
307 smb_vmc_infos
.flags
|= 0x100;
308 smb_vmc_infos
.specs
.page_size
= vmc_superblock
.page_size
;
309 smb_vmc_infos
.specs
.block_size
= vmc_superblock
.pages_per_block
;
310 smb_vmc_infos
.specs
.card_size
= vmc_superblock
.pages_per_cluster
* vmc_superblock
.clusters_per_card
;
312 LOG("flags : 0x%X\n", smb_vmc_infos
.flags
);
313 LOG("specs.page_size : 0x%X\n", smb_vmc_infos
.specs
.page_size
);
314 LOG("specs.block_size : 0x%X\n", smb_vmc_infos
.specs
.block_size
);
315 LOG("specs.card_size : 0x%X\n", smb_vmc_infos
.specs
.card_size
);
317 if(vmc_size
== smb_vmc_infos
.specs
.card_size
* smb_vmc_infos
.specs
.page_size
) {
318 smb_vmc_infos
.active
= 1;
319 smb_vmc_infos
.fid
= 0xFFFF;
320 snprintf(vmc_path
, 255, "VMC\\%s.bin", vmc
[i
]);
321 strncpy(smb_vmc_infos
.fname
, vmc_path
, 32); // maybe a too small size here ...
323 LOG("%s is a valid Vmc file\n", smb_vmc_infos
.fname
);
328 for (j
=0; j
<size_smb_mcemu_irx
; j
++) {
329 if (((u32
*)&smb_mcemu_irx
)[j
] == (0xC0DEFAC0 + i
)) {
330 if(smb_vmc_infos
.active
)
331 size_mcemu_irx
= size_smb_mcemu_irx
;
332 memcpy(&((u32
*)&smb_mcemu_irx
)[j
], &smb_vmc_infos
, sizeof(smb_vmc_infos_t
));
337 return size_mcemu_irx
;
341 static void ethLaunchGame(int id
, config_set_t
* configSet
) {
342 int i
, compatmask
, size_irx
= 0;
344 char isoname
[32], filename
[32];
345 base_game_info_t
* game
= ðGames
[id
];
347 if (gRememberLastPlayed
) {
348 configSetStr(configGetByType(CONFIG_LAST
), "last_played", game
->startup
);
349 saveConfig(CONFIG_LAST
, 0);
352 if (sysPcmciaCheck()) {
353 size_irx
= size_smb_pcmcia_cdvdman_irx
;
354 irx
= &smb_pcmcia_cdvdman_irx
;
357 size_irx
= size_smb_cdvdman_irx
;
358 irx
= &smb_cdvdman_irx
;
361 compatmask
= sbPrepare(game
, configSet
, isoname
, size_irx
, irx
, &i
);
363 // For ISO we use the part table to store the "long" name (only for init)
365 memcpy((void*)((u32
)irx
+ i
+ 44), game
->name
, strlen(game
->name
) + 1);
367 for (i
= 0; i
< size_irx
; i
++) {
368 if (!strcmp((const char*)((u32
)irx
+ i
),"xxx.xxx.xxx.xxx")) {
374 int size_mcemu_irx
= ethPrepareMcemu(game
, configSet
);
375 if (size_mcemu_irx
== -1) {
376 if (guiMsgBox(_l(_STR_ERR_VMC_CONTINUE
), 1, NULL
))
383 char config_str
[255];
384 sprintf(config_str
, "%d.%d.%d.%d", pc_ip
[0], pc_ip
[1], pc_ip
[2], pc_ip
[3]);
385 memcpy((void*)((u32
)irx
+ i
), config_str
, strlen(config_str
) + 1);
386 memcpy((void*)((u32
)irx
+ i
+ 16), &gPCPort
, 4);
387 memcpy((void*)((u32
)irx
+ i
+ 20), gPCShareName
, 32);
388 memcpy((void*)((u32
)irx
+ i
+ 56), gPCUserName
, 32);
389 memcpy((void*)((u32
)irx
+ i
+ 92), gPCPassword
, 32);
391 // disconnect from the active SMB session
394 char *altStartup
= NULL
;
395 if (configGetStr(configSet
, CONFIG_ITEM_ALTSTARTUP
, &altStartup
))
396 strncpy(filename
, altStartup
, 32);
398 sprintf(filename
, "%s", game
->startup
);
399 shutdown(NO_EXCEPTION
); // CAREFUL: shutdown will call ethCleanUp, so ethGames/game will be freed
403 sysLaunchLoaderElf(filename
, "ETH_MODE", size_irx
, irx
, size_mcemu_irx
, &smb_mcemu_irx
, compatmask
, compatmask
& COMPAT_MODE_1
);
405 sysLaunchLoaderElf(filename
, "ETH_MODE", size_irx
, irx
, compatmask
, compatmask
& COMPAT_MODE_1
);
409 static config_set_t
* ethGetConfig(int id
) {
410 return sbPopulateConfig(ðGames
[id
], ethPrefix
, "\\");
413 static int ethGetImage(char* folder
, int isRelative
, char* value
, char* suffix
, GSTEXTURE
* resultTex
, short psm
) {
416 sprintf(path
, "%s%s\\%s_%s", ethPrefix
, folder
, value
, suffix
);
418 sprintf(path
, "%s%s_%s", folder
, value
, suffix
);
419 return texDiscoverLoad(resultTex
, path
, -1, psm
);
422 static void ethCleanUp(int exception
) {
423 if (ethGameList
.enabled
) {
424 LOG("ethCleanUp()\n");
431 static int ethCheckVMC(char* name
, int createSize
) {
432 return sysCheckVMC(ethPrefix
, "\\", name
, createSize
);
436 static item_list_t ethGameList
= {
437 ETH_MODE
, 0, COMPAT
, 0, MENU_MIN_INACTIVE_FRAMES
, "ETH Games", _STR_NET_GAMES
, ðInit
, ðNeedsUpdate
,
439 ðUpdateGameList
, ðGetGameCount
, ðGetGame
, ðGetGameName
, ðGetGameNameLength
, ðGetGameStartup
, NULL
, NULL
,
441 ðUpdateGameList
, ðGetGameCount
, ðGetGame
, ðGetGameName
, ðGetGameNameLength
, ðGetGameStartup
, ðDeleteGame
, ðRenameGame
,
444 ðLaunchGame
, ðGetConfig
, ðGetImage
, ðCleanUp
, ðCheckVMC
, ETH_ICON
446 ðLaunchGame
, ðGetConfig
, ðGetImage
, ðCleanUp
, ETH_ICON