forked from ps2homebrew/hdl-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
osal_win32.c
587 lines (509 loc) · 18 KB
/
osal_win32.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*
* osal_win32.c
* $Id: osal_win32.c,v 1.14 2006/09/01 17:21:16 bobi Exp $
*
* Copyright 2004 Bobi B., w1zard0f07@yahoo.com
*
* This file is part of hdl_dump.
*
* hdl_dump 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; either version 2 of the License, or
* (at your option) any later version.
*
* hdl_dump is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with hdl_dump; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <windows.h>
#include <winioctl.h>
#include <stdio.h>
#include "retcodes.h"
#include "osal.h"
#include "apa.h"
/* memory-mapped files */
struct osal_mmap_type
{ /* keep anything required for unmap operation */
HANDLE mmap;
LPVOID start;
};
static int osal_dlist_alloc(osal_dlist_t **dlist);
static int osal_dlist_add(osal_dlist_t *dlist,
const char *name,
u_int64_t capacity,
int is_ps2,
unsigned long status);
/**************************************************************/
unsigned long
osal_get_last_error_code(void)
{
return (GetLastError());
}
/**************************************************************/
char *
osal_get_error_msg(unsigned long err)
{
char *error = NULL;
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR)&error, 0, NULL);
return (error);
}
/**************************************************************/
char *
osal_get_last_error_msg(void)
{
return (osal_get_error_msg(GetLastError()));
}
/**************************************************************/
void osal_dispose_error_msg(char *msg)
{
LocalFree(msg);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_open(const char *name,
osal_handle_t *handle,
int no_cache)
{
*handle = CreateFile(name, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL, OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | (no_cache ? FILE_FLAG_NO_BUFFERING : 0), NULL);
return (*handle != INVALID_HANDLE_VALUE ? OSAL_OK : OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_open_device_for_writing(const char *device_name,
osal_handle_t *handle)
{
*handle = CreateFile(device_name, GENERIC_WRITE | GENERIC_READ,
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL, OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_NO_BUFFERING, NULL);
return (*handle != INVALID_HANDLE_VALUE ? OSAL_OK : OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_create_file(const char *path,
osal_handle_t *handle,
u_int64_t estimated_size)
{
*handle = CreateFile(path, GENERIC_WRITE, FILE_SHARE_READ, NULL,
CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_NO_BUFFERING, NULL);
if (*handle != INVALID_HANDLE_VALUE) {
if (estimated_size > 0) {
/* set file size to reduce fragmentation */
LARGE_INTEGER zero, output_size;
output_size.QuadPart = estimated_size;
zero.QuadPart = 0;
if (SetFilePointerEx(*handle, output_size, NULL, FILE_BEGIN) &&
SetEndOfFile(*handle) &&
SetFilePointerEx(*handle, zero, NULL, FILE_BEGIN))
return (OSAL_OK);
else {
CloseHandle(*handle);
DeleteFile(path);
return (OSAL_ERR); /* error setting file length */
}
}
return (OSAL_OK);
}
return (OSAL_ERR); /* error creating file */
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_get_estimated_device_size(osal_handle_t handle,
u_int64_t *size_in_bytes)
{
DISK_GEOMETRY geo;
DWORD len = 0;
if (DeviceIoControl(handle, IOCTL_DISK_GET_DRIVE_GEOMETRY,
NULL, 0, &geo, sizeof(DISK_GEOMETRY), &len, NULL)) {
*size_in_bytes = (geo.Cylinders.QuadPart * geo.TracksPerCylinder *
geo.SectorsPerTrack * geo.BytesPerSector);
return (OSAL_OK);
} else
return (OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_get_device_size(osal_handle_t handle,
u_int64_t *size_in_bytes)
{
int result = osal_get_estimated_device_size(handle, size_in_bytes);
if (result == OSAL_OK) {
LARGE_INTEGER offs;
offs.QuadPart = *size_in_bytes;
if (SetFilePointerEx(handle, offs, NULL, FILE_BEGIN)) /* seek to "end" */
{
const u_int32_t BUFF_SIZE = 1024 * 1024;
void *buffer = LocalAlloc(LMEM_FIXED, BUFF_SIZE);
if (buffer != NULL) {
BOOL success;
DWORD len;
do { /* count the number of bytes readen after the end */
success = ReadFile(handle, buffer, BUFF_SIZE, &len, NULL);
if (success)
*size_in_bytes += len;
} while (success && len > 0);
LocalFree(buffer);
offs.QuadPart = 0;
return (SetFilePointerEx(handle, offs, NULL, FILE_BEGIN) ? OSAL_OK : OSAL_ERR);
} else
return (OSAL_NO_MEM); /* out-of-memory */
} else
return (OSAL_ERR); /* seek fails */
} else
return (result); /* error */
}
/**************************************************************/
int osal_get_device_sect_size(osal_handle_t handle,
u_int32_t *size_in_bytes)
{
DISK_GEOMETRY geo;
DWORD len = 0;
if (DeviceIoControl(handle, IOCTL_DISK_GET_DRIVE_GEOMETRY,
NULL, 0, &geo, sizeof(DISK_GEOMETRY), &len, NULL)) {
*size_in_bytes = geo.BytesPerSector;
return (OSAL_OK);
} else
return (OSAL_ERR);
}
/**************************************************************/
int osal_get_volume_sect_size(const char *volume_root,
u_int32_t *size_in_bytes)
{
char volume[10]; /* copy drive letter and a slash - "C:\" */
char *p = volume, *end = volume + sizeof(volume) - 2;
while (*volume_root != '\\' && p < end)
*p++ = *volume_root++;
if (p < end) {
DWORD sectors_per_clust, bytes_per_sect, free_clusters, total_clusters;
*p++ = '\\';
*p = '\0';
if (GetDiskFreeSpace(volume, §ors_per_clust, &bytes_per_sect,
&free_clusters, &total_clusters)) {
*size_in_bytes = bytes_per_sect;
return (OSAL_OK);
} else
return (OSAL_ERR);
} else { /* if called with no volume name ask for full path */
char full_path[MAX_PATH], *dummy;
DWORD result = GetFullPathName(volume_root, MAX_PATH, full_path, &dummy);
if (result <= MAX_PATH)
return (osal_get_volume_sect_size(full_path, size_in_bytes));
else
return (RET_BAD_FORMAT);
}
}
/**************************************************************/
int osal_get_file_size(osal_handle_t handle,
u_int64_t *size_in_bytes)
{
LARGE_INTEGER size;
if (GetFileSizeEx(handle, &size)) {
*size_in_bytes = size.QuadPart;
return (OSAL_OK);
} else
return (OSAL_ERR);
}
/**************************************************************/
int osal_get_file_size_ex(const char *path,
u_int64_t *size_in_bytes)
{
osal_handle_t in;
int result = osal_open(path, &in, 1);
if (result == OSAL_OK) {
result = osal_get_file_size(in, size_in_bytes);
osal_close(&in);
}
return (result);
}
/**************************************************************/
int osal_seek(osal_handle_t handle,
u_int64_t abs_pos)
{
LARGE_INTEGER offs;
offs.QuadPart = abs_pos;
return (SetFilePointerEx(handle, offs, NULL, FILE_BEGIN) ? OSAL_OK : OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_read(osal_handle_t handle,
void *out,
u_int32_t bytes,
u_int32_t *stored)
{
DWORD len;
if (ReadFile(handle, out, bytes, &len, NULL)) {
*stored = len;
return (OSAL_OK);
} else
return (OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_write(osal_handle_t handle,
const void *in,
u_int32_t bytes,
u_int32_t *stored)
{
DWORD len;
if (WriteFile(handle, in, bytes, &len, NULL)) {
*stored = len;
return (OSAL_OK);
} else
return (OSAL_ERR);
}
/**************************************************************/
int /* OSAL_OK, OSAL_ERR */
osal_close(osal_handle_t *handle)
{
return (CloseHandle(*handle) ? OSAL_OK : OSAL_ERR);
}
/**************************************************************/
void *
osal_alloc(u_int32_t bytes)
{
return (LocalAlloc(LMEM_FIXED, bytes));
}
/**************************************************************/
void osal_free(void *ptr)
{
if (ptr != NULL)
LocalFree(ptr);
}
/**************************************************************/
int osal_mmap(osal_mmap_t **mm,
void **p,
osal_handle_t handle,
u_int64_t offset,
u_int32_t length)
{
*mm = osal_alloc(sizeof(osal_mmap_t));
if (*mm != NULL) {
u_int64_t end = offset + length;
HANDLE mmap = CreateFileMapping(handle, NULL, PAGE_READONLY,
(end >> 32) & 0xffffffff,
end & 0xffffffff, NULL);
if (mmap != NULL) {
LPVOID *addr = MapViewOfFile(mmap, FILE_MAP_READ,
(offset >> 32) & 0xffffff,
offset & 0xffffffff, length);
if (addr != NULL) { /* success */
(*mm)->mmap = mmap;
(*mm)->start = addr;
*p = addr;
return (OSAL_OK);
} else
CloseHandle(mmap); /* and fallback to the clean-up below */
}
/* here on error only */
osal_free(*mm), *mm = NULL;
return (OSAL_ERR);
} else /* malloc failed */
return (OSAL_NO_MEM);
}
/**************************************************************/
int osal_munmap(osal_mmap_t *mm)
{
if (UnmapViewOfFile(mm->start) &&
CloseHandle(mm->mmap)) {
osal_free(mm);
return (OSAL_OK);
}
return (OSAL_ERR);
}
/**************************************************************/
int osal_query_hard_drives(osal_dlist_t **hard_drives)
{
u_int32_t i;
int result;
*hard_drives = NULL;
result = osal_dlist_alloc(hard_drives);
for (i = 0; result == RET_OK && i < 25; ++i) {
char device_name[20];
HANDLE device;
sprintf(device_name, "\\\\.\\PhysicalDrive%u", (unsigned int)i);
if (osal_open(device_name, &device, TRUE) == OSAL_OK) { /* device exists */
u_int64_t size_in_bytes;
sprintf(device_name, "hdd%u:", (unsigned int)i);
if (osal_get_estimated_device_size(device, &size_in_bytes) == OSAL_OK)
result = osal_dlist_add(*hard_drives, device_name, size_in_bytes,
is_apa_partitioned(device),
ERROR_SUCCESS);
else
result = osal_dlist_add(*hard_drives, device_name,
(u_int64_t)0, 0, GetLastError());
CloseHandle(device);
} else
break; /* first open error is the end of list */
}
if (result != RET_OK &&
*hard_drives != NULL)
osal_dlist_free(*hard_drives);
return (result);
}
/**************************************************************/
/* #define _USE_SPTI */
#if defined(_USE_SPTI)
int osal_query_optical_drives(osal_dlist_t **optical_drives)
{
int result;
*optical_drives = NULL;
result = osal_dlist_alloc(optical_drives);
if (result == RET_OK) {
DWORD req_len = GetLogicalDriveStrings(0, NULL);
if (req_len > 0) {
char *buf;
++req_len; /* include term-zero */
buf = (char *)osal_alloc(req_len);
if (buf != NULL) { /* NOTE: ignore case if device is plugged in before two calls */
DWORD tot_len = GetLogicalDriveStrings(req_len, buf);
if (tot_len > 0) {
char *p = buf;
do {
size_t len = strlen(p);
if (GetDriveType(p) == DRIVE_CDROM) { /* CD-/DVD-ROM drive found */
result = osal_dlist_add(*optical_drives, device_name,
(u_int64_t)0, 0, GetLastError());
}
p += len;
} while (*p != '\0');
result = RET_OK;
} else
result = RET_ERR;
osal_free(buf);
} else
result = RET_NO_MEM;
} else
result = RET_ERR;
}
return (result);
}
#else
int osal_query_optical_drives(osal_dlist_t **optical_drives)
{
u_int32_t i;
int result;
*optical_drives = NULL;
result = osal_dlist_alloc(optical_drives);
for (i = 0; result == RET_OK && i < 16; ++i) {
char device_name[20];
HANDLE device;
sprintf(device_name, "\\\\.\\CdRom%u", (unsigned int)i);
if (osal_open(device_name, &device, TRUE) == OSAL_OK) { /* device exists */
u_int64_t size_in_bytes;
sprintf(device_name, "cd%u:", (unsigned int)i);
if (osal_get_estimated_device_size(device, &size_in_bytes) == OSAL_OK)
result = osal_dlist_add(*optical_drives, device_name,
size_in_bytes, 0, ERROR_SUCCESS);
else
result = osal_dlist_add(*optical_drives, device_name,
(u_int64_t)0, 0, GetLastError());
CloseHandle(device);
} else
break; /* first open error is the end of list */
}
if (result != RET_OK &&
*optical_drives != NULL)
osal_dlist_free(*optical_drives);
return (result);
}
#endif /* _USE_SPTI defined? */
/**************************************************************/
int osal_query_devices(osal_dlist_t **hard_drives,
osal_dlist_t **optical_drives)
{
int result = osal_query_hard_drives(hard_drives);
if (result == RET_OK)
result = osal_query_optical_drives(optical_drives);
return (result);
}
/**************************************************************/
static int
osal_dlist_alloc(osal_dlist_t **dlist)
{
*dlist = osal_alloc(sizeof(osal_dlist_t));
if (*dlist != NULL) {
(*dlist)->allocated = (*dlist)->used = 0;
(*dlist)->device = NULL;
return (RET_OK);
} else
return (RET_NO_MEM);
}
/**************************************************************/
static int
osal_dlist_add(osal_dlist_t *dlist,
const char *name,
u_int64_t capacity,
int is_ps2,
unsigned long status)
{
osal_dev_t *dev;
if (dlist->allocated == dlist->used) { /* allocate memory if necessary */
osal_dev_t *tmp = osal_alloc((dlist->allocated + 16) * sizeof(osal_dev_t));
if (tmp != NULL) {
if (dlist->device != NULL) {
memcpy(tmp, dlist->device, dlist->used * sizeof(osal_dev_t));
osal_free(dlist->device);
}
dlist->device = tmp;
dlist->allocated += 16;
} else
return (RET_NO_MEM);
}
/* add the new entry */
dev = dlist->device + dlist->used;
strncpy(dev->name, name, DEV_MAX_NAME_LEN);
dev->name[DEV_MAX_NAME_LEN - 1] = '\0';
dev->capacity = capacity;
dev->is_ps2 = is_ps2;
dev->status = status;
++dlist->used;
return (RET_OK);
}
/**************************************************************/
void osal_dlist_free(osal_dlist_t *dlist)
{
if (dlist != NULL) {
if (dlist->device != NULL)
osal_free(dlist->device);
osal_free(dlist);
}
}
/**************************************************************/
int /* RET_OK, RET_BAD_FORMAT, RET_BAD_DEVICE */
osal_map_device_name(const char *input,
char output[MAX_PATH])
{
if (memcmp(input, "hdd", 3) == 0) {
char *endp;
long index = strtol(input + 3, &endp, 10);
if (endp == input + 3)
return (RET_BAD_FORMAT); /* bad format: no number after hdd */
if (endp[0] == ':' &&
endp[1] == '\0') {
sprintf(output, "\\\\.\\PhysicalDrive%ld", index);
return (RET_OK);
} else
return (RET_BAD_FORMAT);
} else if (memcmp(input, "cd", 2) == 0) {
char *endp;
long index = strtol(input + 2, &endp, 10);
if (endp == input + 2)
return (RET_BAD_FORMAT); /* bad format: no number after hdd */
if (endp[0] == ':' &&
endp[1] == '\0') {
sprintf(output, "\\\\.\\CdRom%ld", index);
return (RET_OK);
} else
return (RET_BAD_FORMAT);
} else
return (RET_BAD_DEVICE);
}