-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
2881 lines (2619 loc) · 112 KB
/
Copy pathProgram.cs
File metadata and controls
2881 lines (2619 loc) · 112 KB
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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System.Globalization;
using System.Security.Cryptography;
using System.Text;
namespace XISOSharp.Cli;
/// <summary>
/// Command-line entry point for extract-xiso.
/// Parses arguments and dispatches to <see cref="XisoReader"/> for extraction/listing/rewriting
/// or <see cref="XisoWriter"/> for image creation.
/// </summary>
internal static class Program
{
/// <summary>
/// Entry point. Parses command-line flags and positional arguments,
/// then invokes the appropriate XISO operation.
/// </summary>
/// <param name="args">Command-line arguments.</param>
/// <returns>0 on success, 1 on error.</returns>
private static int Main(string[] args)
{
if (args.Length < 1)
{
PrintUsage();
return 1;
}
var extract = true;
var rewrite = false;
var tree = false;
var info = false;
var lsMode = false;
var xexInfoMode = false;
var unpackMode = false;
var hashMode = false;
var copyOut = false;
var auditMode = false;
var validateMode = false;
var checksumFlagMode = false;
var checksumSilent = false;
string? hashAlgo = null;
var xSeen = false;
var deleteOld = false;
string? path = null;
string? outputName = null;
var createList = new List<(string Dir, string? Name)>();
var isos = 0;
var err = 0;
var validateFlag = false;
var validateChecksums = false;
var validateStrict = false;
string? validateReport = null;
int? skipSectors = null;
int? prependSectors = null;
var excludePatterns = new List<string>();
string? batchDir = null;
var batchRecursive = false;
string? packInput = null;
string? packName = null;
string? packIsoFile = null;
var filetimeMode = false;
var setFiletimeMode = false;
// XboxKit redump / archival modes
var videoMode = false;
var randomMode = false;
var seedMode = false;
var wipeMode = false;
var trimMode = false;
var petrifyMode = false;
var updateMode = false;
var zarMode = false;
var allMode = false;
var bestMode = false;
var compressAlias = false;
var rebuildMode = false;
string? securitySectorsPath = null;
var optind = 0;
// Handle standalone verb commands early (don't start with '-')
if (args.Length > 0 && string.Equals(args[0], "validate", StringComparison.OrdinalIgnoreCase))
{
validateMode = true;
extract = false;
optind = 1;
}
else if (args.Length > 0 && string.Equals(args[0], "rebuild", StringComparison.OrdinalIgnoreCase))
{
// Rebuild has its own positional+flag parsing (files may appear before -o), handle directly
return RunRebuildMode(args, 1, null, null);
}
else if (args.Length > 0 && string.Equals(args[0], "build-image", StringComparison.OrdinalIgnoreCase))
{
return RunBuildImage(args, 1);
}
else if (args.Length > 0 && string.Equals(args[0], "image-spec", StringComparison.OrdinalIgnoreCase))
{
return RunImageSpec(args, 1);
}
else if (args.Length > 0 && (string.Equals(args[0], "compress", StringComparison.OrdinalIgnoreCase) ||
string.Equals(args[0], "cso", StringComparison.OrdinalIgnoreCase)))
{
return RunCompressMode(args, 1);
}
else if (args.Length > 0 && (string.Equals(args[0], "decompress", StringComparison.OrdinalIgnoreCase) ||
string.Equals(args[0], "uncso", StringComparison.OrdinalIgnoreCase) ||
string.Equals(args[0], "decso", StringComparison.OrdinalIgnoreCase)))
{
return RunDecompressMode(args, 1);
}
else if (args.Length > 0 && (string.Equals(args[0], "checksum", StringComparison.OrdinalIgnoreCase) ||
string.Equals(args[0], "--checksum", StringComparison.OrdinalIgnoreCase)))
{
return RunChecksumMode(args, 1);
}
for (var i = optind; i < args.Length; i++)
{
var arg = args[i];
if (arg.StartsWith('-') && arg.Length > 1)
{
switch (arg)
{
case "-v":
Console.Write(Constants.Banner);
return 0;
case "-h":
PrintUsage();
return 0;
case "-c":
{
if (xSeen || rewrite || !extract || i + 1 >= args.Length)
{
PrintUsage();
return 1;
}
var dir = args[++i];
string? name = null;
if (i + 1 < args.Length && !args[i + 1].StartsWith('-'))
{
name = args[++i];
}
createList.Add((dir, name));
break;
}
case "-x": xSeen = true; break;
case "--unpack":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
unpackMode = true;
break;
case "-X":
if (i + 1 < args.Length)
{
excludePatterns.Add(args[++i]);
}
else
{
PrintUsage();
return 1;
}
break;
case "-l":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
break;
case "-t":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
tree = true;
break;
case "-i":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
info = true;
break;
case "--ls":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
lsMode = true;
break;
case "--xex-info":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
xexInfoMode = true;
break;
case "--md5":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
hashMode = true;
hashAlgo = "MD5";
break;
case "--sha256":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
hashMode = true;
hashAlgo = "SHA256";
break;
case "-V":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
auditMode = true;
break;
case "validate":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
validateMode = true;
break;
case "--validate":
validateFlag = true;
break;
case "--validate-checksums":
validateFlag = true;
validateChecksums = true;
break;
case "--validate-strict":
validateStrict = true;
break;
case "--validate-report":
if (i + 1 < args.Length)
{
validateReport = args[++i];
}
else
{
PrintUsage();
return 1;
}
break;
case "--copy-out":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
copyOut = true;
break;
case "-r":
if (xSeen || !extract || createList.Count > 0)
{
PrintUsage();
return 1;
}
rewrite = true;
break;
case "-q": Logger.Quiet = true; break;
case "-Q": Logger.Quiet = Logger.RealQuiet = true; break;
case "-s": Logger.RemoveSystemUpdate = true; break;
case "-D": deleteOld = true; break;
case "-m": Logger.MediaEnable = false; break;
case "-d":
if (i + 1 < args.Length)
{
path = args[++i];
}
else
{
PrintUsage();
return 1;
}
break;
case "-o":
if (i + 1 < args.Length)
{
outputName = args[++i];
}
else
{
PrintUsage();
return 1;
}
break;
case "-p":
PrintUsage();
return 1;
case "--skip-sectors":
if (i + 1 < args.Length &&
int.TryParse(args[i + 1], CultureInfo.InvariantCulture, out var skipVal) && skipVal >= 0)
{
skipSectors = skipVal;
i++;
}
else
{
Logger.LogErr(
"Error: --skip-sectors requires a non-negative integer (number of 2048-byte sectors)\n");
return 1;
}
break;
case "--prepend-sectors":
if (i + 1 < args.Length &&
int.TryParse(args[i + 1], CultureInfo.InvariantCulture, out var prependVal) &&
prependVal >= 0)
{
prependSectors = prependVal;
i++;
}
else
{
Logger.LogErr(
"Error: --prepend-sectors requires a non-negative integer (number of 2048-byte sectors)\n");
return 1;
}
break;
case "--batch":
if (i + 1 < args.Length)
{
batchDir = args[++i];
}
else
{
PrintUsage();
return 1;
}
break;
case "--batch-recursive":
batchRecursive = true;
break;
case "--pack":
if (packInput != null || xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
if (i + 1 >= args.Length)
{
PrintUsage();
return 1;
}
packInput = args[++i];
if (i + 1 < args.Length && !args[i + 1].StartsWith('-'))
{
packName = args[++i];
}
break;
case "--video":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
videoMode = true;
break;
case "--random":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
randomMode = true;
break;
case "--seed":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
seedMode = true;
break;
case "--wipe":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
wipeMode = true;
break;
case "--trim":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
trimMode = true;
break;
case "--petrify":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
petrifyMode = true;
break;
case "--update":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
updateMode = true;
break;
case "--zar":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
zarMode = true;
break;
case "--all":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
allMode = true;
break;
case "--best":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
bestMode = true;
break;
case "--compress":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
compressAlias = true;
break;
case "--security-sectors":
case "--sectors":
if (i + 1 < args.Length)
{
securitySectorsPath = args[++i];
}
else
{
PrintUsage();
return 1;
}
break;
case "--checksum":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
checksumFlagMode = true;
break;
case "--filetime":
case "--get-filetime":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
filetimeMode = true;
break;
case "--set-filetime":
if (xSeen || rewrite || createList.Count > 0)
{
PrintUsage();
return 1;
}
extract = false;
setFiletimeMode = true;
break;
case "--silent":
// --silent is an alias for checksum --silent when --checksum is active;
// otherwise it is a checksum-specific flag handled by the verb subcommand.
if (checksumFlagMode)
checksumSilent = true;
else
{
Logger.LogErr("Error: --silent requires --checksum\n");
PrintUsage();
return 1;
}
break;
default:
optind = i;
goto parse_done;
}
optind = i + 1;
}
else
{
optind = i;
break;
}
}
parse_done:
// --pack translates to create mode (directory input) or rewrite mode (ISO input),
// reusing the existing create/rewrite machinery.
if (TranslatePackInput(packInput, packName, batchDir, rewrite, info, lsMode, xexInfoMode,
unpackMode, hashMode, copyOut, auditMode, validateMode, tree, extract, checksumFlagMode,
optind, args.Length, createList, ref rewrite, ref packIsoFile, ref path) != 0)
{
return 1;
}
if (checksumFlagMode && (info || lsMode || xexInfoMode || tree || hashMode || copyOut || auditMode ||
validateMode || unpackMode || createList.Count > 0 || rewrite || filetimeMode ||
setFiletimeMode))
{
Logger.LogErr("Error: --checksum cannot be combined with other modes\n");
return 1;
}
if (filetimeMode && (info || lsMode || xexInfoMode || tree || hashMode || copyOut || auditMode ||
validateMode || unpackMode || createList.Count > 0 || rewrite || checksumFlagMode ||
setFiletimeMode))
{
Logger.LogErr("Error: --filetime cannot be combined with other modes\n");
return 1;
}
if (setFiletimeMode && (info || lsMode || xexInfoMode || tree || hashMode || copyOut || auditMode ||
validateMode || unpackMode || createList.Count > 0 || rewrite || checksumFlagMode ||
filetimeMode))
{
Logger.LogErr("Error: --set-filetime cannot be combined with other modes\n");
return 1;
}
if (createList.Count > 0 && skipSectors.HasValue)
{
Logger.LogErr("Error: --skip-sectors cannot be combined with -c (create mode)\n");
return 1;
}
if (prependSectors.HasValue && createList.Count == 0 && !rewrite)
{
Logger.LogErr("Error: --prepend-sectors requires -c (create) or -r (rewrite) mode\n");
return 1;
}
if ((skipSectors.HasValue || prependSectors.HasValue) &&
(info || lsMode || xexInfoMode || hashMode || copyOut || auditMode || validateMode || validateFlag))
{
Logger.LogErr(
"Error: --skip-sectors/--prepend-sectors are only supported in extract, list, tree, rewrite (-r), unpack, and create (-c) modes\n");
return 1;
}
if (excludePatterns.Count > 0 && createList.Count == 0)
{
Logger.LogErr("Error: -X (exclude pattern) requires -c (create) mode\n");
return 1;
}
if (batchRecursive && batchDir == null)
{
Logger.LogErr("Error: --batch-recursive requires --batch <directory>\n");
return 1;
}
if (batchDir != null && (createList.Count > 0 || info || lsMode || xexInfoMode || unpackMode || hashMode ||
copyOut || validateMode || checksumFlagMode || filetimeMode || setFiletimeMode))
{
Logger.LogErr(
"Error: --batch is only supported in extract, list, tree, rewrite (-r), and audit (-V) modes\n");
return 1;
}
if (unpackMode && (info || lsMode || xexInfoMode || tree || hashMode || copyOut || auditMode || validateMode ||
checksumFlagMode || filetimeMode || setFiletimeMode))
{
Logger.LogErr("Error: --unpack cannot be combined with other modes\n");
return 1;
}
// XboxKit redump modes are mutually exclusive with other operational modes
var anyRedumpMode = videoMode || randomMode || seedMode || wipeMode || trimMode || petrifyMode || updateMode ||
zarMode || allMode || bestMode || compressAlias || rebuildMode;
if (anyRedumpMode && (info || lsMode || xexInfoMode || tree || hashMode || copyOut || auditMode ||
validateMode || unpackMode || createList.Count > 0 || rewrite || checksumFlagMode ||
filetimeMode || setFiletimeMode))
{
Logger.LogErr(
"Error: --video/--random/--seed/--wipe/--trim/--petrify/--update/--zar/--all/--best/--compress/rebuild cannot be combined with other modes\n");
return 1;
}
if ((filetimeMode || setFiletimeMode) && (anyRedumpMode || batchDir != null))
{
Logger.LogErr("Error: --filetime/--set-filetime cannot be combined with redump or --batch modes\n");
return 1;
}
if ((anyRedumpMode || rebuildMode) && batchDir != null)
{
Logger.LogErr("Error: --batch cannot be combined with redump modes\n");
return 1;
}
// Expand --all / --best / --compress aliases into individual flags
if (allMode)
{
randomMode = true;
seedMode = true;
trimMode = true;
updateMode = true;
videoMode = true;
wipeMode = true;
}
if (bestMode)
{
trimMode = true;
wipeMode = true;
}
if (compressAlias)
{
petrifyMode = true;
updateMode = true;
videoMode = true;
zarMode = true;
}
// --filetime / --set-filetime dispatch before batch expansion (positional value handling).
if (filetimeMode)
{
if (optind >= args.Length)
{
Logger.LogErr("Error: --filetime requires <iso>\n");
PrintUsage();
return 1;
}
if (optind + 1 < args.Length)
{
Logger.LogErr("Error: --filetime takes exactly one <iso> (extra arguments not allowed)\n");
PrintUsage();
return 1;
}
string isoPath = args[optind];
try
{
ulong raw = XisoReader.GetFileTimeRaw(isoPath, skipSectors);
DateTimeOffset dto = FileTimeHelper.FromFileTimeRaw(raw);
string iso8601 = dto.ToString("O", CultureInfo.InvariantCulture);
Logger.Log($"FileTime: {iso8601} ({raw}) 0x{raw:X16}\n");
// Also emit raw only to stdout for scripting when quiet? Match xdvdfs raw behavior on --silent?
return 0;
}
catch (Exception ex) when (ex is XisoFormatException or IOException or FileNotFoundException
or DirectoryNotFoundException)
{
Logger.LogErr($"Error reading filetime from {isoPath}: {ex.Message}\n");
return 1;
}
}
if (setFiletimeMode)
{
if (optind + 1 >= args.Length)
{
Logger.LogErr(
"Error: --set-filetime requires <iso> <value> (value: ISO-8601, decimal raw, 0x hex, or 'now')\n");
PrintUsage();
return 1;
}
if (optind + 2 < args.Length)
{
Logger.LogErr("Error: --set-filetime takes exactly <iso> <value>\n");
PrintUsage();
return 1;
}
string isoPath = args[optind];
string valueStr = args[optind + 1];
if (!FileTimeHelper.TryParseFileTime(valueStr, out ulong raw, out DateTimeOffset dto))
{
Logger.LogErr(
$"Error: invalid filetime value '{valueStr}' (expected ISO-8601, decimal, 0x hex, 'now', or '0')\n");
return 1;
}
try
{
XisoReader.SetFileTime(isoPath, raw, skipSectors);
string iso8601 = dto.ToString("O", CultureInfo.InvariantCulture);
Logger.Log($"Set FileTime for {isoPath} to {iso8601} ({raw}) 0x{raw:X16}\n");
return 0;
}
catch (Exception ex) when (ex is XisoFormatException or IOException or FileNotFoundException
or UnauthorizedAccessException)
{
Logger.LogErr($"Error setting filetime for {isoPath}: {ex.Message}\n");
return 1;
}
}
if (checksumFlagMode)
{
if (optind >= args.Length)
{
Logger.LogErr("Error: --checksum requires <iso>\n");
PrintUsage();
return 1;
}
int cExit = 0;
for (int k = optind; k < args.Length; k++)
{
string iso = args[k];
try
{
byte[] hash = XisoChecksum.ComputeImageChecksum(iso);
string hex = Convert.ToHexString(hash).ToLowerInvariant();
if (checksumSilent)
Logger.Log($"{hex}\n");
else
Logger.Log($"{hex}\t{iso}\n");
}
catch (Exception ex)
{
Logger.LogErr($"Error checksumming {iso}: {ex.Message}\n");
cExit = 1;
}
}
return cExit;
}
// The list of ISO files to process: explicit filenames, a --batch directory scan,
// or a --pack ISO input.
var isoFiles = ExpandIsoFiles(batchDir, batchRecursive, args, optind, packIsoFile);
if (isoFiles == null)
{
return 1;
}
if (createList.Count > 0)
{
if (optind < args.Length)
{
PrintUsage();
return 1;
}
}
else if (isoFiles.Count == 0)
{
PrintUsage();
return 1;
}
Logger.Log(Constants.Banner);
// Dispatch XboxKit redump modes (batch) — after expansion so --batch handling is uniform,
// but rebuild already returned above.
if (videoMode || randomMode || seedMode || wipeMode || trimMode || petrifyMode || updateMode || zarMode)
{
return RunRedumpBatch(isoFiles, videoMode, randomMode, seedMode, wipeMode, trimMode, petrifyMode,
updateMode, zarMode, securitySectorsPath, outputName);
}
if (createList.Count > 0)
{
foreach ((string dir, string? name) in createList)
{
string? outputDir = null;
string? isoName = null;
if (name != null)
{
var lastSep = name.LastIndexOf(Constants.PathChar);
if (lastSep >= 0)
{
outputDir = name[..lastSep];
isoName = name[(lastSep + 1)..];
}
else
{
isoName = name;
}
}
try
{
// Allow the output name to include a not-yet-existing directory.
if (outputDir != null)
{
Directory.CreateDirectory(outputDir);
}
XisoWriter.CreateXiso(dir, outputDir, null, null, out _, isoName, null,
prependSectors: prependSectors,
excludePatterns: excludePatterns.Count > 0 ? excludePatterns : null);
}
catch (UnauthorizedAccessException ex)
{
Logger.LogErr($"Error: permission denied: {ex.Message}\n");
return 1;
}
catch (IOException ex)
{
Logger.LogErr($"Error: {ex.Message}\n");
return 1;
}
catch (Exception ex)
{
Logger.LogErr($"Error: {ex.Message}\n");
return 1;
}
}
return 0;
}
if (info)
{
if (optind >= args.Length)
{
PrintUsage();
return 1;
}
var xisoPath = args[optind];
var internalPath = optind + 1 < args.Length ? args[optind + 1] : "/";
try
{
var volInfo = XisoReader.GetVolumeInfo(xisoPath);
if (!volInfo.IsValid)
{
Logger.LogErr($"{xisoPath} does not appear to be a valid xbox iso image\n");
return 1;
}
Logger.Log($"Volume: {xisoPath}\n");
Logger.Log($" Valid: {volInfo.IsValid}\n");
Logger.Log($" File Length: {volInfo.FileLength} bytes ({volInfo.FileLength / 1024 / 1024} MB)\n");
Logger.Log($" Total Sectors: {volInfo.TotalSectors}\n");
Logger.Log($" Disc Offset: 0x{volInfo.DiscLseek:X8}\n");
Logger.Log($" Root Sector: {volInfo.RootDirSector}\n");
Logger.Log($" Root Size: {volInfo.RootDirSize} bytes\n");
try
{
ulong raw = XisoReader.GetFileTimeRaw(xisoPath, skipSectors);
DateTimeOffset dto = FileTimeHelper.FromFileTimeRaw(raw);
string iso8601 = dto.ToString("O", CultureInfo.InvariantCulture);
Logger.Log($" FileTime: {iso8601} ({raw})\n");
Logger.Log($" FileTime raw: 0x{raw:X16} ({raw})\n");
}
catch (Exception ex) when (ex is XisoFormatException or IOException)
{
Logger.Log($" FileTime: (unavailable: {ex.Message})\n");
}
Logger.Log("\n");
var entries = XisoReader.ListDirectory(xisoPath, internalPath);
if (entries.Count == 0)
{
Logger.Log($"{internalPath}: empty directory\n");
}
else
{
Logger.Log($"Directory: {internalPath}\n\n");
foreach (var entry in entries)
{
Logger.Log($" {entry.Name}{(entry.IsDirectory ? "/" : "")}\n");
Logger.Log($" Sector: {entry.StartSector}\n");
Logger.Log($" Size: {entry.FileSize} bytes\n");
Logger.Log($" Attrs: 0x{entry.Attributes:X2}{FormatAttributes(entry.Attributes)}\n");
Logger.Log(
$" L-Offset: {(entry.LeftChildOffset == 0 ? "none" : entry.LeftChildOffset.ToString())}\n");
Logger.Log(
$" R-Offset: {(entry.RightChildOffset == 0 ? "none" : entry.RightChildOffset.ToString())}\n");
Logger.Log("\n");
}
}
}
catch (Exception ex) when (ex is InvalidDataException or IOException)
{
Logger.LogErr($"Error: {ex.Message}\n");
return 1;
}
return 0;
}
if (lsMode)
{
if (optind >= args.Length)
{
PrintUsage();
return 1;
}
var xisoPath = args[optind];
var internalPath = optind + 1 < args.Length ? args[optind + 1] : "/";
try
{
var entries = XisoReader.ListDirectoryFlat(xisoPath, internalPath);
if (entries.Count == 0)
{
Logger.Log($"{internalPath}: empty directory\n");