Generates XCI/NSP/HFS0/ExeFS/RomFS/Certificate/Ticket dumps from Nintendo Switch gamecards and installed SD/eMMC titles. (MIRROR)
Go to file
Pablo Curiel fd4b7e933b Update to v1.0.7. 2019-04-23 08:50:01 -04:00
source Update to v1.0.7. 2019-04-23 08:50:01 -04:00
.gitignore Initial commit 2018-05-15 14:57:40 +02:00
LICENSE.md Complete set of changes since the latest commit made by MCMrARM. 2018-06-21 02:42:46 -04:00
Makefile Update to v1.0.7. 2019-04-23 08:50:01 -04:00
README.md Update to v1.0.7. 2019-04-23 08:50:01 -04:00
icon.jpg Complete set of changes since the latest commit made by MCMrARM. 2018-06-21 02:42:46 -04:00

README.md

gcdumptool

Nintendo Switch Game Card Dump Tool

Main features

  • Generates XCI cartridge dumps with optional certificate removal and optional trimming.
  • CRC32 checksum calculation for XCI dumps.
  • Full XCI dump verification using XML database from NSWDB.COM (NSWreleases.xml).
  • XML database and in-app update via libcurl.
  • Precise HFS0 raw partition dumping, using the root HFS0 header from the game card.
  • Partition filesystem data dumping.
  • Partition filesystem browser with manual file dump support.
  • Manual game card certificate dump.
  • Free SD card space checks in place.
  • File splitting support for all operations, using 2 GiB parts.
  • Game card Title ID and Control.nacp retrieval support using NCM and NS services.
  • Dump speed, ETA calculation and progress bar.

Thanks to

  • MCMrARM, for creating the original application.
  • RSDuck, for their vba-next-switch port. It's UI menu code was taken as a basis for this application.
  • Foen, for giving me some pretty good hints about how to use the NCM service.
  • Yellows8, for helping me fix a silly bug in my implementation of some NCM service IPC calls.
  • Björn Samuelsson, for his public domain CRC32 checksum calculation code for C (crc32_fast.c).
  • AnalogMan, for his constant support and ideas.
  • The folks from ReSwitched, for working towards the creation of a good homebrew ecosystem.

Changelog

v1.0.7:

  • Fixed a segmentation fault when trying to free an invalid XML node data pointer when a Scene release from NSWReleases.xml with a matching Title ID misses data related to that node.
  • Added a message suggesting the user to restart the application after a successful update.

v1.0.6:

  • Updated application codebase in order to make it compatible with the latest devkitA64 and libnx releases.
  • Removed some fs-srv service functions from fsext.c/h that have been included in libnx (and fixed the ones that haven't).
  • Revamped the GFX code to replace the 8x8 ASCII font with the shared system font, using the pl service and FreeType.
  • Enabled (and fixed) the in-app update option. HTTPS compatibility is achieved through the mbedtls portlib.
  • Disabled screen dimming and auto sleep.
  • Added file counter to partition browser.
  • Changed the naming convention for split gamecard dumps to *.xc[part number], in order to make them compatible with SX OS and other tools right away.
  • Increased the delay after inserting a new gamecard by 1 second.
  • Added a gamecard detection thread to monitor gamecard state changes in a better way. This thread is hooked to a gamecard detection kernel handle retrieved through an IEventNotifier object.
  • Replaced partition filesystem mounting through fs-srv service calls with manual HFS0 partition header parsing. This should fix issues when browsing the Logo partition from type 0x02 gamecards.
  • Blocked HOME button presses when running as a regular/system application instead of an applet. A warning message will be displayed whenever any operation is started if the application is running as an applet.
  • Added detection for bundled FW versions 6.0.0 - 8.0.0.

v1.0.5:

  • Fixed game card version reading (now using the ncm service instead of retrieving it from the cached Control.nacp).
  • Added ability to read and identify FW update versions bundled with game cards.
  • In case an error occurs while reading the game card Title ID, the application will also display the FW version update bundled with it along with an explanation.
  • Removed output XCI dump renaming based on the XML database from nswdb.com.
  • Output naming scheme changed. Characters out of the ASCII range are replaced with underscores:
    • XCI dump: "sdmc:/[GameName] v[GameVersion] ([TitleID]).xci".
    • Raw partition dump: "sdmc:/[GameName] v[GameVersion] ([TitleID]) - Partition [PartitionIndex] ([PartitionName]).hfs0".
    • Partition data dump (directory): "sdmc:/[GameName] v[GameVersion] ([TitleID]) - Partition [PartitionIndex] ([PartitionName])/".
    • Certificate dump: "sdmc:/[GameName] v[GameVersion] ([TitleID]) - Certificate ([CRC32]).bin".
  • Manual file dumps will now be saved to their corresponding directory instead of the SD card root.
  • Added a XML database update option in the main menu.
  • Added an update application option in the main menu. It isn't working at this moment because libcurl has problems dealing with secure connections, and as such the option has been disabled (pressing A on it does nothing). Nonetheless, the code to parse JSON responses from the GitHub API is pretty much ready, so it's just a matter of time.

v1.0.4:

  • exFAT mode turned on by default.
  • Replaced padding option with a trim output dump option (same as XCI-Cutter).
  • Added dump speed and ETA calculation.
  • Added XCI dump verification using XML database from nswdb.com (NSWreleases.xml). The file must be saved to the SD card root directory. Also, keep in mind that dump verification is only performed if you choose to create a full dump (with or without cert), not a trimmed one.
  • Made CRC32 checksum calculation + XCI dump verification a configurable option.
  • Output XCI dumps will get renamed to their corresponding Scene release if a match is found using the XML database from nswdb.com (e.g. "sdmc:/0100000000010000_20180625-234930.xci" -> "sdmc:/Super.Mario.Odyssey.NSW-BigBlueBox.xci").

v1.0.3:

  • Made the 0xFF padding feature a configurable option.
  • Added CRC32 checksum calculation for XCI dumps.

v1.0.2:

  • Fixed a silly bug in the file splitting code.

v1.0.1:

  • Minor UI fixes and tweaks.
  • Added some missing Title ID checks in uiLoop().
  • All calls to uiStatusMsg() are now properly identified.
  • Increased wait time to 2 seconds when a new gamecard is detected.

v1.0.0:

Initial release.