summaryrefslogtreecommitdiff
path: root/src/Dolphin/dvd/dvdfs.c
blob: d0dc27cc0edb5311f026fb4713c9d5fc1c68c1a3 (plain)
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
#include "dolphin/DVDPriv.h"
#include "dolphin/os.h"
#include "dolphin/os/OSBootInfo.h"

typedef struct FSTEntry FSTEntry;

struct FSTEntry {
  unsigned int isDirAndStringOff;
  unsigned int parentOrPosition;
  unsigned int nextEntryOrLength;
};

static OSBootInfo* BootInfo;
static FSTEntry* FstStart;
static char* FstStringStart;
static u32 MaxEntryNum;
static u32 currentDirectory = 0;
OSThreadQueue __DVDThreadQueue;
u32 __DVDLongFileNameFlag = 0;

static void cbForReadAsync(s32 result, DVDCommandBlock* block);
static void cbForReadSync(s32 result, DVDCommandBlock* block);
static void cbForSeekAsync(s32 result, DVDCommandBlock* block);
static void cbForSeekSync(s32 result, DVDCommandBlock* block);
static void cbForPrepareStreamAsync(s32 result, DVDCommandBlock* block);
static void cbForPrepareStreamSync(s32 result, DVDCommandBlock* block);

void __DVDFSInit() {
  BootInfo = (OSBootInfo*)OSPhysicalToCached(0);
  FstStart = (FSTEntry*)BootInfo->FSTLocation;

  if (FstStart) {
    MaxEntryNum = FstStart[0].nextEntryOrLength;
    FstStringStart = (char*)&(FstStart[MaxEntryNum]);
  }
}

/* For convenience */
#define entryIsDir(i) (((FstStart[i].isDirAndStringOff & 0xff000000) == 0) ? FALSE : TRUE)
#define stringOff(i) (FstStart[i].isDirAndStringOff & ~0xff000000)
#define parentDir(i) (FstStart[i].parentOrPosition)
#define nextDir(i) (FstStart[i].nextEntryOrLength)
#define filePosition(i) (FstStart[i].parentOrPosition)
#define fileLength(i) (FstStart[i].nextEntryOrLength)

static BOOL isSame(const char* path, const char* string) {
  while (*string != '\0') {
    if (tolower(*path++) != tolower(*string++)) {
      return FALSE;
    }
  }

  if ((*path == '/') || (*path == '\0')) {
    return TRUE;
  }

  return FALSE;
}

s32 DVDConvertPathToEntrynum(char* pathPtr) {
  const char* ptr;
  char* stringPtr;
  BOOL isDir;
  u32 length;
  u32 dirLookAt;
  u32 i;
  const char* origPathPtr = pathPtr;
  const char* extentionStart;
  BOOL illegal;
  BOOL extention;

  dirLookAt = currentDirectory;

  while (1) {

    if (*pathPtr == '\0') {
      return (s32)dirLookAt;
    } else if (*pathPtr == '/') {
      dirLookAt = 0;
      pathPtr++;
      continue;
    } else if (*pathPtr == '.') {
      if (*(pathPtr + 1) == '.') {
        if (*(pathPtr + 2) == '/') {
          dirLookAt = parentDir(dirLookAt);
          pathPtr += 3;
          continue;
        } else if (*(pathPtr + 2) == '\0') {
          return (s32)parentDir(dirLookAt);
        }
      } else if (*(pathPtr + 1) == '/') {
        pathPtr += 2;
        continue;
      } else if (*(pathPtr + 1) == '\0') {
        return (s32)dirLookAt;
      }
    }

    if (__DVDLongFileNameFlag == 0) {
      extention = FALSE;
      illegal = FALSE;

      for (ptr = pathPtr; (*ptr != '\0') && (*ptr != '/'); ptr++) {
        if (*ptr == '.') {
          if ((ptr - pathPtr > 8) || (extention == TRUE)) {
            illegal = TRUE;
            break;
          }
          extention = TRUE;
          extentionStart = ptr + 1;

        } else if (*ptr == ' ')
          illegal = TRUE;
      }

      if ((extention == TRUE) && (ptr - extentionStart > 3))
        illegal = TRUE;

      if (illegal)
        OSPanic(__FILE__, 379,
                "DVDConvertEntrynumToPath(possibly DVDOpen or DVDChangeDir or DVDOpenDir): "
                "specified directory or file (%s) doesn't match standard 8.3 format. This is a "
                "temporary restriction and will be removed soon\n",
                origPathPtr);
    } else {
      for (ptr = pathPtr; (*ptr != '\0') && (*ptr != '/'); ptr++)
        ;
    }

    isDir = (*ptr == '\0') ? FALSE : TRUE;
    length = (u32)(ptr - pathPtr);

    ptr = pathPtr;

    for (i = dirLookAt + 1; i < nextDir(dirLookAt); i = entryIsDir(i) ? nextDir(i) : (i + 1)) {
      if ((entryIsDir(i) == FALSE) && (isDir == TRUE)) {
        continue;
      }

      stringPtr = FstStringStart + stringOff(i);

      if (isSame(ptr, stringPtr) == TRUE) {
        goto next_hier;
      }
    }

    return -1;

  next_hier:
    if (!isDir) {
      return (s32)i;
    }

    dirLookAt = i;
    pathPtr += length + 1;
  }
}

BOOL DVDFastOpen(s32 entrynum, DVDFileInfo* fileInfo) {
  if ((entrynum < 0) || (entrynum >= MaxEntryNum) || entryIsDir(entrynum)) {
    return FALSE;
  }

  fileInfo->startAddr = filePosition(entrynum);
  fileInfo->length = fileLength(entrynum);
  fileInfo->callback = (DVDCallback)NULL;
  fileInfo->cb.state = DVD_STATE_END;

  return TRUE;
}

BOOL DVDOpen(char* fileName, DVDFileInfo* fileInfo) {
  s32 entry;
  char currentDir[128];

  entry = DVDConvertPathToEntrynum(fileName);

  if (0 > entry) {
    DVDGetCurrentDir(currentDir, 128);
    OSReport("Warning: DVDOpen(): file '%s' was not found under %s.\n", fileName, currentDir);
    return FALSE;
  }

  if (entryIsDir(entry)) {
    return FALSE;
  }

  fileInfo->startAddr = filePosition(entry);
  fileInfo->length = fileLength(entry);
  fileInfo->callback = (DVDCallback)NULL;
  fileInfo->cb.state = DVD_STATE_END;

  return TRUE;
}

#ifdef FULL_FRANK
BOOL DVDClose(DVDFileInfo* fileInfo) {
  DVDCancel(&(fileInfo->cb));
  return TRUE;
}
#else
/* clang-format off */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm BOOL DVDClose(DVDFileInfo* fileInfo) {
  nofralloc
  mflr r0
  stw r0, 4(r1)
  stwu r1, -8(r1)
  bl DVDCancel
  li r3, 1
  lwz r0, 0xc(r1)
  addi r1, r1, 8
  mtlr r0
  blr
}
#pragma pop
#endif

static u32 myStrncpy(char* dest, char* src, u32 maxlen) {
  u32 i = maxlen;

  while ((i > 0) && (*src != 0)) {
    *dest++ = *src++;
    i--;
  }

  return (maxlen - i);
}

static u32 entryToPath(u32 entry, char* path, u32 maxlen) {
  char* name;
  u32 loc;

  if (entry == 0) {
    return 0;
  }

  name = FstStringStart + stringOff(entry);

  loc = entryToPath(parentDir(entry), path, maxlen);

  if (loc == maxlen) {
    return loc;
  }

  *(path + loc++) = '/';

  loc += myStrncpy(path + loc, name, maxlen - loc);

  return loc;
}

static BOOL DVDConvertEntrynumToPath(s32 entrynum, char* path, u32 maxlen) {
  u32 loc;

  loc = entryToPath((u32)entrynum, path, maxlen);

  if (loc == maxlen) {
    path[maxlen - 1] = '\0';
    return FALSE;
  }

  if (entryIsDir(entrynum)) {
    if (loc == maxlen - 1) {
      path[loc] = '\0';
      return FALSE;
    }

    path[loc++] = '/';
  }

  path[loc] = '\0';
  return TRUE;
}

BOOL DVDGetCurrentDir(char* path, u32 maxlen) {
  return DVDConvertEntrynumToPath((s32)currentDirectory, path, maxlen);
}

BOOL DVDChangeDir(char* dirName) {
  s32 entry;
  entry = DVDConvertPathToEntrynum(dirName);
  if ((entry < 0) || (entryIsDir(entry) == FALSE)) {
    return FALSE;
  }

  currentDirectory = (u32)entry;

  return TRUE;
}

BOOL DVDReadAsyncPrio(DVDFileInfo* fileInfo, void* addr, s32 length, s32 offset,
                      DVDCallback callback, s32 prio) {

  if (!((0 <= offset) && (offset < fileInfo->length))) {
    OSPanic(__FILE__, 742, "DVDReadAsync(): specified area is out of the file  ");
  }

  if (!((0 <= offset + length) && (offset + length < fileInfo->length + DVD_MIN_TRANSFER_SIZE))) {
    OSPanic(__FILE__, 748, "DVDReadAsync(): specified area is out of the file  ");
  }

  fileInfo->callback = callback;
  DVDReadAbsAsyncPrio(&(fileInfo->cb), addr, length, (s32)(fileInfo->startAddr + offset),
                      cbForReadAsync, prio);

  return TRUE;
}
#ifndef offsetof
#define offsetof(type, memb) ((u32) & ((type*)0)->memb)
#endif

static void cbForReadAsync(s32 result, DVDCommandBlock* block) {
  DVDFileInfo* fileInfo;

  fileInfo = (DVDFileInfo*)((char*)block - offsetof(DVDFileInfo, cb));
  if (fileInfo->callback) {
    (fileInfo->callback)(result, fileInfo);
  }
}

/* This is based on the revolution SDK, these may not match in all cases I have also left the line numbers at 0 */
s32 DVDReadPrio(DVDFileInfo* fileInfo, void* addr, s32 length, s32 offset, s32 prio) {
  BOOL result;
  DVDCommandBlock* block;
  s32 state;
  BOOL enabled;
  s32 retVal;

  if (!((0 <= offset) && (offset <= fileInfo->length))) {
    OSPanic(__FILE__, 0, "DVDRead(): specified area is out of the file  ");
  }

  if (!((0 <= offset + length) && (offset + length < fileInfo->length + DVD_MIN_TRANSFER_SIZE))) {
    OSPanic(__FILE__, 0, "DVDRead(): specified area is out of the file  ");
  }

  block = &(fileInfo->cb);

  result = DVDReadAbsAsyncPrio(block, addr, length, (s32)(fileInfo->startAddr + offset),
                               cbForReadSync, prio);

  if (result == FALSE) {
    return -1;
  }

  enabled = OSDisableInterrupts();

  while(1) {
    state = ((volatile DVDCommandBlock*)block)->state;

    if (state == DVD_STATE_END) {
      retVal = (s32)block->transferredSize;
      break;
    }
    if (state == DVD_STATE_FATAL_ERROR) {
      retVal = DVD_RESULT_FATAL_ERROR;
      break;
    }
    if (state == DVD_STATE_CANCELED) {
      retVal = DVD_RESULT_CANCELED;
      break;
    }

    OSSleepThread(&__DVDThreadQueue);
  }

  OSRestoreInterrupts(enabled);
  return retVal;
}

/* This is based on the revolution SDK, these may not match in all cases */
static void cbForReadSync(s32 result, DVDCommandBlock* block) { OSWakeupThread(&__DVDThreadQueue); }
/* This is based on the revolution SDK, these may not match in all cases */
BOOL DVDSeekAsyncPrio(DVDFileInfo* fileInfo, s32 offset, DVDCallback callback, s32 prio) {
  if (!((0 <= offset) && (offset <= fileInfo->length))) {
    OSPanic(__FILE__, 0, "DVDSeek(): offset is out of the file  ");
  }

  fileInfo->callback = callback;
  DVDSeekAbsAsyncPrio(&(fileInfo->cb), (s32)(fileInfo->startAddr + offset), cbForSeekAsync,
                      prio);

  return TRUE;
}
/* This is based on the revolution SDK, these may not match in all cases */
static void cbForSeekAsync(s32 result, DVDCommandBlock* block) {
  DVDFileInfo* fileInfo;

  fileInfo = (DVDFileInfo*)((char*)block - offsetof(DVDFileInfo, cb));

  if (fileInfo->callback) {
    (fileInfo->callback)(result, fileInfo);
  }
}
/* This is based on the revolution SDK, these may not match in all cases */
s32 DVDSeekPrio(DVDFileInfo* fileInfo, s32 offset, s32 prio) {
  BOOL result;
  DVDCommandBlock* block;
  s32 state;
  BOOL enabled;
  s32 retVal;

  block = &(fileInfo->cb);

  result =
      DVDSeekAbsAsyncPrio(block, (s32)(fileInfo->startAddr + offset), cbForSeekSync, prio);

  if (result == FALSE) {
    return -1;
  }

  enabled = OSDisableInterrupts();

  while (1) {
    state = ((volatile DVDCommandBlock*)block)->state;

    if (state == DVD_STATE_END) {
      retVal = 0;
      break;
    }
    if (state == DVD_STATE_FATAL_ERROR) {
      retVal = DVD_RESULT_FATAL_ERROR;
      break;
    }
    if (state == DVD_STATE_CANCELED) {
      retVal = DVD_RESULT_CANCELED;
      break;
    }

    OSSleepThread(&__DVDThreadQueue);
  }

  OSRestoreInterrupts(enabled);
  return retVal;
}
/* This is based on the revolution SDK, these may not match in all cases */
static void cbForSeekSync(s32 result, DVDCommandBlock* block) { OSWakeupThread(&__DVDThreadQueue); }

/* This is based on the revolution SDK, these may not match in all cases */
s32 DVDGetFileInfoStatus(DVDFileInfo* fileInfo) {
  return DVDGetCommandBlockStatus(&fileInfo->cb);
}

/* This is based on the revolution SDK, these may not match in all cases */
BOOL DVDFastOpenDir(s32 entrynum, DVDDir* dir) {

  if ((entrynum < 0) || (entrynum >= MaxEntryNum) || !entryIsDir(entrynum)) {
    return FALSE;
  }

  dir->entryNum = (u32)entrynum;
  dir->location = (u32)entrynum + 1;
  dir->next = nextDir(entrynum);

  return TRUE;
}

/* This is based on the revolution SDK, these may not match in all cases */
BOOL DVDOpenDir(char* dirName, DVDDir* dir) {
  s32 entry;
  char currentDir[128];
  entry = DVDConvertPathToEntrynum(dirName);

  if (entry < 0) {
    DVDGetCurrentDir(currentDir, 128);
    OSReport("Warning: DVDOpenDir(): file '%s' was not found under %s.\n", dirName, currentDir);
    return FALSE;
  }

  if (!entryIsDir(entry)) {
    return FALSE;
  }

  dir->entryNum = (u32)entry;
  dir->location = (u32)entry + 1;
  dir->next = nextDir(entry);

  return TRUE;
}

BOOL DVDReadDir(DVDDir* dir, DVDDirEntry* dirent) {
  u32 loc = dir->location;
  if ((loc <= dir->entryNum) || (dir->next <= loc))
    return FALSE;

  dirent->entryNum = loc;
  dirent->isDir = entryIsDir(loc);
  dirent->name = FstStringStart + stringOff(loc);

  dir->location = entryIsDir(loc) ? nextDir(loc) : (loc + 1);

  return TRUE;
}

/* This is based on the revolution SDK, these may not match in all cases */
BOOL DVDCloseDir(DVDDir* dir) { return TRUE; }

/* This is based on the revolution SDK, these may not match in all cases */
void DVDRewindDir(DVDDir* dir) { dir->location = dir->entryNum + 1; }

/* This is based on the revolution SDK, these may not match in all cases */
void* DVDGetFSTLocation(void) { return BootInfo->FSTLocation; }

#define RoundUp32KB(x) (((u32)(x) + 32 * 1024 - 1) & ~(32 * 1024 - 1))
#define Is32KBAligned(x) (((u32)(x) & (32 * 1024 - 1)) == 0)

BOOL DVDPrepareStreamAsync(DVDFileInfo* fileInfo, u32 length, u32 offset, DVDCallback callback) {
  u32 start;

  start = fileInfo->startAddr + offset;

  if (!Is32KBAligned(start)) {
    OSPanic(__FILE__, 1189,
            "DVDPrepareStreamAsync(): Specified start address (filestart(0x%x) + offset(0x%x)) is "
            "not 32KB aligned",
            fileInfo->startAddr, offset);
  }

  if (length == 0)
    length = fileInfo->length - offset;

  if (!Is32KBAligned(length)) {
    OSPanic(__FILE__, 1199,
            "DVDPrepareStreamAsync(): Specified length (0x%x) is not a multiple of 32768(32*1024)",
            length);
  }

  if (!((offset < fileInfo->length) && (offset + length <= fileInfo->length))) {
    OSPanic(__FILE__, 1207,
            "DVDPrepareStreamAsync(): The area specified (offset(0x%x), length(0x%x)) is out of "
            "the file",
            offset, length);
  }

  fileInfo->callback = callback;
  return DVDPrepareStreamAbsAsync(&(fileInfo->cb), length, fileInfo->startAddr + offset,
                                  cbForPrepareStreamAsync);
}

static void cbForPrepareStreamAsync(s32 result, DVDCommandBlock* block) {
  DVDFileInfo* fileInfo;

  fileInfo = (DVDFileInfo*)((char*)block - offsetof(DVDFileInfo, cb));

  if (fileInfo->callback) {
    (fileInfo->callback)(result, fileInfo);
  }
}

/* This is based on the revolution SDK, these may not match in all cases */
s32 DVDPrepareStream(DVDFileInfo* fileInfo, u32 length, u32 offset) {
  BOOL result;
  DVDCommandBlock* block;
  s32 state;
  BOOL enabled;
  s32 retVal;
  u32 start;
  start = fileInfo->startAddr + offset;

  if (!Is32KBAligned(start)) {
    OSPanic(__FILE__, 0,
            "DVDPrepareStream(): Specified start address (filestart(0x%x) + offset(0x%x)) is not "
            "32KB aligned",
            fileInfo->startAddr, offset);
  }

  if (length == 0)
    length = fileInfo->length - offset;

  if (!Is32KBAligned(length)) {
    OSPanic(__FILE__, 0,
            "DVDPrepareStream(): Specified length (0x%x) is not a multiple of 32768(32*1024)",
            length);
  }

  if (!((offset <= fileInfo->length) && (offset + length <= fileInfo->length))) {
    OSPanic(
        __FILE__, 0,
        "DVDPrepareStream(): The area specified (offset(0x%x), length(0x%x)) is out of the file",
        offset, length);
  }

  block = &(fileInfo->cb);
  result = DVDPrepareStreamAbsAsync(block, length, start, cbForPrepareStreamSync);

  if (result == FALSE) {
    return -1;
  }

  enabled = OSDisableInterrupts();

  while(1) {
    state = ((volatile DVDCommandBlock*)block)->state;

    if (state == DVD_STATE_END) {
      retVal = 0;
      break;
    }
    if (state == DVD_STATE_FATAL_ERROR) {
      retVal = DVD_RESULT_FATAL_ERROR;
      break;
    }
    if (state == DVD_STATE_CANCELED) {
      retVal = DVD_RESULT_CANCELED;
      break;
    }

    OSSleepThread(&__DVDThreadQueue);
  }

  OSRestoreInterrupts(enabled);
  return retVal;
}

/* This is based on the revolution SDK, these may not match in all cases */
static void cbForPrepareStreamSync(s32 result, DVDCommandBlock* block) {
  OSWakeupThread(&__DVDThreadQueue);
}

/* This is based on the revolution SDK, these may not match in all cases */
s32 DVDGetTransferredSize(DVDFileInfo* fileinfo) {
  s32 bytes;
  DVDCommandBlock* cb;

  cb = &(fileinfo->cb);

  switch (cb->state) {
  case DVD_STATE_END:
  case DVD_STATE_COVER_CLOSED:
  case DVD_STATE_NO_DISK:
  case DVD_STATE_COVER_OPEN:
  case DVD_STATE_WRONG_DISK:
  case DVD_STATE_FATAL_ERROR:
  case DVD_STATE_MOTOR_STOPPED:
  case DVD_STATE_CANCELED:
  case DVD_STATE_RETRY:
    bytes = (s32)cb->transferredSize;
    break;

  case DVD_STATE_WAITING:
    bytes = 0;
    break;

  case DVD_STATE_BUSY:
    bytes = (s32)(cb->transferredSize + (cb->currTransferSize - DVDLowGetLength()));
    break;

  default:
    break;
  }

  return bytes;
}