Commit graph

59 commits

Author SHA1 Message Date
Michael Scire
cff283f77d fs.mitm: Protect the CAL0 backup from being read. 2018-11-15 15:27:01 -08:00
Michael Scire
e0c7bfc93d fs.mitm: Always mitm non-sysmodules. 2018-11-15 14:59:47 -08:00
Michael Scire
a00e120bf7 fs.mitm: Make PRODINFO always read-only. 2018-11-15 06:23:44 -08:00
Michael Scire
1932662b4c fs.mitm: improve backup path name again 2018-11-15 04:54:07 -08:00
Michael Scire
b4781b8a4f fs.mitm: improve backup path name 2018-11-15 04:52:55 -08:00
Michael Scire
83644692fe fs.mitm: Automatically backup PRODINFO on boot. 2018-11-15 04:44:13 -08:00
Michael Scire
420361597e all: Change flagging location. Support (but deprecate) old location. 2018-11-15 04:26:40 -08:00
Michael Scire
05187502b3 fs.mitm: Implement basic boot0 protection against writes/pubk writes. 2018-11-15 03:57:55 -08:00
Michael Scire
878ac59aae fs.mitm: skeleton logic for protecting autorcm. 2018-11-14 19:49:12 -08:00
Michael Scire
e1cc1b8d29 fs.mitm: Make accesses to Boot0 sectored 2018-11-14 19:40:46 -08:00
Michael Scire
d95fc102db fs.mitm: Intercept OpenBisStorage calls. 2018-11-14 18:39:48 -08:00
Michael Scire
54a22797a7 Make libstratosphere a submodule 2018-11-08 01:24:40 -08:00
Michael Scire
3ed239296a libstrat: Allow nullptr buffers if 0 size. (closes #255) 2018-11-04 21:52:53 -08:00
Michael Scire
78a47dba6d fs.mitm: Cache IStorageInterfaces, store meta on SD instead of memory. 2018-11-04 13:56:07 -08:00
Michael Scire
5d0aabaa44 fs.mitm: Fix romfs detection on SD 2018-11-04 12:48:14 -08:00
Michael Scire
e786bc7e9a fs.mitm: Only create storage interface when needed. 2018-11-04 12:45:29 -08:00
Michael Scire
6ef34d80a0 libstrat: automatically detect+format rawdata structs correctly. 2018-10-31 05:04:00 +09:00
Michael Scire
2f7224edce fs.mitm: increase thread count back to 5. 2018-10-31 05:04:00 +09:00
Michael Scire
23a85a7c24 fs.mitm: split out set.mitm 2018-10-31 05:04:00 +09:00
Michael Scire
3dc679215b fs.mitm: Remove debugging options 2018-10-31 05:04:00 +09:00
Michael Scire
aef7d36300 fs.mitm: update for libstratosphere refactor 2018-10-31 05:04:00 +09:00
Michael Scire
c0fe4f7af7 fs.mitm: Intercept qlaunch sysver request 2018-10-24 14:16:39 -07:00
Michael Scire
e1d884960d fs.mitm: Improve configuration refresh file semantics. 2018-10-22 23:00:22 -07:00
Michael Scire
f96e1d5074 loader/fs.mitm: Support override config changes at runtime 2018-10-22 22:53:40 -07:00
SciresM
85540d4ad2
fs.mitm: Fix correctness bug in LayeredRomfs::Read(). 2018-10-19 12:15:18 +09:00
Michael Scire
781f2597e5 libstratosphere: Fix receive for multi-static IPC buffers 2018-10-17 03:49:05 -07:00
Michael Scire
4944986814 fs.mitm: Allow for disabling mitm for a title via flag. 2018-10-16 20:41:19 -07:00
Michael Scire
55ad57a02d fs.mitm: Use same override button semantics as loader. 2018-10-16 19:01:41 -07:00
Michael Scire
6711cd93a8 atmosphere: extract API version management to common folder 2018-10-16 17:54:50 -07:00
Michael Scire
f603dbfc98 fs.mitm: Add domain support (closes #202) 2018-10-16 13:33:45 -07:00
hexkyz
28e4d4411d Add and fix copyright notices for better GPL compliance (thanks @naehrwert and @CTCaer). 2018-09-07 16:00:13 +01:00
Michael Scire
cb4089e49c Stratosphere: use isxdigit to check if char is hex. 2018-07-29 17:27:30 -07:00
Michael Scire
e697f6bdd0 fs.mitm: Fix flag detection. 2018-07-29 11:21:42 -07:00
Michael Scire
de05685e3d fs.mitm: Remove shim for fsStorageGetSize, which was added to libnx 2018-07-29 11:07:05 -07:00
Michael Scire
cd42f6dc18 fs.mitm: Allow fsmitm.flag specification for mitm 2018-07-28 12:29:54 -07:00
Michael Scire
5993614c2e fs.mitm: Try to MitM titles that have override RomFS content on the SD card 2018-07-27 20:15:06 -07:00
Michael Scire
eaa282b915 Fix additional UAF in DirEntry building 2018-07-19 21:21:50 -06:00
Michael Scire
a46e796f4d fs.mitm: Fix UAF in every DirEntry processed.
How on earth did this code ever work?
2018-07-19 21:17:57 -06:00
Léo Lam
49ba91a8f3 fs_istorage: Default IStorage destructor in cpp
Prevents a -Wweak-vtables warning.
2018-07-10 09:38:18 -07:00
Léo Lam
e088a2f414 stratosphere: In-class initialize members
Same thing, less code, less boilerplate.
2018-07-10 09:38:18 -07:00
Léo Lam
5b3e8e1c5d stratosphere: Use RAII for locks
This renames the Mutex class member functions so that the mutex types
satisfy Lockable.

This makes them usable with standard std::scoped_lock
and std::unique_lock, which lets us use RAII and avoids the need
for a custom RAII wrapper :)
2018-07-10 09:38:18 -07:00
Michael Scire
83c9747e5f fs.mitm: Save memory+time in sibling reconstruction via reverse iteration 2018-06-29 00:34:18 -06:00
Michael Scire
4c920dfe92 fs.mitm: Optimize out remaining O(n^2) op. BotW is very fast. 2018-06-28 23:24:08 -06:00
Michael Scire
90226ec438 fs.mitm: Fix typo. map impl takes 2-3 seconds to boot botw. 2018-06-28 23:18:35 -06:00
Michael Scire
c536665fe9 fs.mitm: Use std::map for RomFS building 2018-06-28 22:40:18 -06:00
Michael Scire
fb0c1b1ac7 fs.mitm: Fix debug-commented-out command 2018-06-28 20:42:27 -06:00
Michael Scire
caac5f9078 fs.mitm: Simplify source merging condition thanks to padding guarantees 2018-06-28 20:41:36 -06:00
Michael Scire
a95836552e fs.mitm: Use less path memory, fix source concat. (Fixes BotW, probably others) 2018-06-28 20:39:23 -06:00
Michael Scire
8da27723fc fs.mitm: Fix c++ modernization breaking changes 2018-06-27 23:02:06 -06:00
Tony Wasserka
ad636f7216 Modernize C++ usage (#144)
* Stratosphere: Use modern C++ idioms in some places

* algorithms like std::for_each are used instead of raw loops

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Add a utility predicate function to test for equality with a reference element

This can be used to rewrite some common raw loops using algorithms instead

* fs.mitm: Use variant

* fs.mitm: Use enum class

* fs.mitm: Turn RomFSSourceInfo::Cleanup into a destructor

This obsoletes the need for a custom deleter in other places

* fs.mitm: Use enum class some more

* fs.mitm: Use unique_ptr

* fs.mitm: Simplify initialization

* Stratosphere: Simplify initialization

* fs.mitm: Use unique_ptr (fix memory leak along the way)

The previous code was using "delete" rather than "delete[]"

* fs.mitm: Use vector::emplace_back rather than push_back

emplace_back constructs elements in-place, hence avoiding a redundant element copy.

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Use unique_ptr

* fs.mitm: Replace more raw loops with algorithms

* Stratosphere: Prefer move-construction over copy-construction when moving sink parameters around
2018-06-19 11:07:31 -07:00