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
Michael Scire
c2d9ac8f5c
fs.mitm: WIP LayeredFS impl (NOTE: UNUSABLE ATM)
...
Also greatly refactors libstratosphere, and does a lot of other things.
There is a lot of code in this one.
2018-06-14 17:51:18 -06:00
Michael Scire
237ff0d1e7
libstratosphere/fs.mitm: Push WIP support for Domains. Not yet fully working.
2018-06-12 16:01:04 -06:00
Michael Scire
5c80016c81
fs.mitm: Add HANS-style redirection for System Data Archives.
2018-06-10 11:11:23 -06:00
Michael Scire
931e38742b
fs.mitm: Fix sm^H^Hfshax
2018-06-10 03:12:34 -06:00
Michael Scire
3cbdf0b2b9
fs.mitm: Get Title ID on fsp-srv init, Add worker to handle subinterfaces.
2018-06-10 03:07:15 -06:00
Michael Scire
548903e3fb
fs.mitm: Remove debugging test, fix postprocessing.
2018-06-10 01:19:29 -06:00
Michael Scire
ff9412feef
fs.mitm: Add hook for postprocessing mitm messages.
2018-06-10 01:17:00 -06:00
Michael Scire
40a6b7bb54
fs.mitm: Fix pointer buffer size passed to mitm'd commands
2018-06-09 19:36:01 -06:00
Michael Scire
6a58307d83
fs.mitm: Remove unnecessary permissions from json.
2018-06-09 19:34:25 -06:00
Michael Scire
c1c211f542
fs.mitm: Implement basic passthrough framework for input commands.
2018-06-09 19:33:22 -06:00