-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathparse.c
246 lines (206 loc) · 5.2 KB
/
parse.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
* Copyright (C) 2010 drizzt
*
* Authors:
* drizzt <[email protected]>
* The original OpenBM author
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License.
*/
/* SFO parsing and managing functions */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysutil/sysutil_msgdialog.h>
#include "parse.h"
#include "dialog.h"
#if 0
#define IDX(val, i) ((unsigned int) ((unsigned char *) &val)[i])
#define LE16_TO_BE(val) ( (unsigned short) ( \
IDX(val, 0) + \
(IDX(val, 1) << 8)))
#define LE32_TO_BE(val) ( (unsigned int) ( \
IDX(val, 0) + \
(IDX(val, 1) << 8) + \
(IDX(val, 2) << 16) + \
(IDX(val, 3) << 24)))
/* Header of a SFO file */
typedef struct {
int magic;
int version;
int key_table_offset;
int data_table_offset;
int items;
} sfo_header_t;
/* Item of a SFO file */
typedef struct {
short key_offset;
char unknown;
char type;
int size;
int padded_size;
int data_offset;
} sfo_key_item_t;
#endif
/** Gets the version of the firmware installed in the ps3 were we are running.
* @return A double with the version number (eg: 3.15)
*/
static double get_system_version(void)
{
FILE *fp;
//we read the version from the file version.txt in the flash
fp = fopen("/dev_flash/vsh/etc/version.txt", "rb");
if (fp != NULL) {
char buf[20];
//read the first line which is the only one we are interested into.
fgets(buf, 20, fp);
fclose(fp);
//skip "version:" and start parsing from there.
return strtod(buf + 8, NULL);
}
//if there was an error return version 0 (shouldn't happen)
return 0;
}
int parse_ps3_disc(char *path, char *id)
{
FILE *fp;
fp = fopen(path, "rb");
if (fp != NULL) {
unsigned len;
int n;
unsigned char *mem = NULL;
fseek(fp, 0, SEEK_END);
len = ftell(fp);
mem = (unsigned char *) malloc(len + 16);
if (!mem) {
fclose(fp);
return -2;
}
memset(mem, 0, len + 16);
fseek(fp, 0, SEEK_SET);
fread((void *) mem, len, 1, fp);
fclose(fp);
for (n = 0x20; n < 0x200; n += 0x20) {
if (!strcmp((char *) &mem[n], "TITLE_ID")) {
n = (mem[n + 0x12] << 8) | mem[n + 0x13];
memcpy(id, &mem[n], 16);
free(mem);
return 0;
}
}
free(mem);
}
return -1;
}
int parse_param_sfo(char *file, const char *field, char *title_name)
{
FILE *fp;
fp = fopen(file, "rb");
if (fp != NULL) {
unsigned len, pos, str;
unsigned char *mem = NULL;
fseek(fp, 0, SEEK_END);
len = ftell(fp);
mem = (unsigned char *) malloc(len + 16);
if (!mem) {
fclose(fp);
return -2;
}
memset(mem, 0, len + 16);
fseek(fp, 0, SEEK_SET);
fread((void *) mem, len, 1, fp);
fclose(fp);
str = (mem[8] + (mem[9] << 8));
pos = (mem[0xc] + (mem[0xd] << 8));
int indx = 0;
// liomajor fix
while (str < len) {
if (mem[str] == 0)
break;
if (!strcmp((char *) &mem[str], field)) {
strncpy(title_name, (char *) &mem[pos], 63);
free(mem);
return 0;
}
while (mem[str])
str++;
str++;
pos += (mem[0x1c + indx] + (mem[0x1d + indx] << 8));
indx += 16;
}
if (mem)
free(mem);
}
return -1;
}
void change_param_sfo_version(char *file)
{
FILE *fp;
fp = fopen(file, "rb");
if (fp != NULL) {
unsigned len, pos, str;
unsigned char *mem = NULL;
fseek(fp, 0, SEEK_END);
len = ftell(fp);
mem = (unsigned char *) malloc(len + 16);
if (!mem) {
fclose(fp);
return;
}
memset(mem, 0, len + 16);
fseek(fp, 0, SEEK_SET);
fread((void *) mem, len, 1, fp);
fclose(fp);
str = (mem[8] + (mem[9] << 8));
pos = (mem[0xc] + (mem[0xd] << 8));
int indx = 0;
while (str < len) {
if (mem[str] == 0)
break;
if (!strcmp((char *) &mem[str], "PS3_SYSTEM_VER")) {
double ver; ///< Used to store the version required in the param.sfo
double sys_ver; ///< Used to store the version currently installed in the ps3
ver = strtod((char *) &mem[pos], NULL);
sys_ver = get_system_version();
if (sys_ver && ver > sys_ver) {
char msg[170];
snprintf(msg, sizeof(msg),
"This game requires PS3_SYSTEM_VER %.2f.\nDo you want to try fixing PARAM.SFO by forcing %.2f version?\n"
"WARNING: It will edit PARAM.SFO without doing any backup.", ver, sys_ver);
dialog_ret = 0;
cellMsgDialogOpen2(type_dialog_yes_no, msg, dialog_fun1, (void *) 0x0000aaaa, NULL);
wait_dialog();
if (dialog_ret == 1) {
char ver_patch[10];
//format the version to be patched so it is xx.xxx
snprintf(ver_patch, sizeof(ver_patch), "%06.3f", sys_ver);
memcpy(&mem[pos], ver_patch, 6);
fp = fopen(file, "wb");
fwrite(mem, len, 1, fp);
fclose(fp);
}
}
if (!strcmp((char *) &mem[str], "ATTRIBUTE")) {
if (mem[pos] != 0x5) {
mem[pos] = 0x5;
fp = fopen(file, "wb");
fwrite(mem, len, 1, fp);
fclose(fp);
}
break;
}
break;
}
while (mem[str])
str++;
str++;
pos += (mem[0x1c + indx] + (mem[0x1d + indx] << 8));
indx += 16;
}
if (mem)
free(mem);
}
}
/* vim: set ts=4 sw=4 sts=4 tw=120 */