summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2023-08-08service: pctl: Partially revert 11221Narr the Reg
2023-08-08fs: return result on null outputsLiam
2023-08-08general: fix incorrect conversionsLiam
2023-08-08ssl: remove ResultVal useLiam
2023-08-08core: remove ResultVal typeLiam
2023-08-07Merge pull request #11217 from german77/olscliamwhite
service: olsc: Implement IOlscServiceForSystemService ITransferTaskListController interfaces for QLaunch
2023-08-07Merge pull request #11221 from german77/pctlliamwhite
service: pctl: Implement functions needed for QLaunch
2023-08-05service: audctl: Stub functions needed by Qlaunchgerman77
2023-08-05service: olsc: Implement IOlscServiceForSystemService ↵german77
ITransferTaskListController interfaces for QLaunch
2023-08-05service: pctl: Implement functions needed for QLaunchgerman77
2023-08-05Merge pull request #11210 from german77/settingsliamwhite
service: set: Implement system settings for Qlaunch
2023-08-04service: set: Add more system settings and address commentsNarr the Reg
2023-08-02service: set: Implement system settings for QlaunchNarr the Reg
2023-08-02service: am: Fix wrong interfaceNarr the Reg
2023-08-02Merge pull request #10839 from lat9nq/pgc-plusliamwhite
general: Reimplement per-game configurations
2023-07-31audren_u: Fix parameter alignmentMorph
The reduction in size from 0x38 to 0x34 caused the parameter to be misaligned. Skipping 1 word fixes this.
2023-07-30tz_content_man: Generate the time zone binary oncelat9nq
Fixes a memory leak with time zone binaries accumulating on theirselves.
2023-07-28Merge pull request #11155 from liamwhite/memory3liamwhite
memory: check page against address space size
2023-07-26Merge pull request #10990 from comex/ubsanliamwhite
Fixes and workarounds to make UBSan happier on macOS
2023-07-25memory: check page against address space sizeLiam
2023-07-24Merge pull request #11095 from liamwhite/memory2liamwhite
memory: cleanup
2023-07-22core: implement GetGaiStringErrorRequest, IContextRegistrarLiam
2023-07-22core: reduce TOCTTOU memory accessLiam
2023-07-22memory: minimize dependency on processLiam
2023-07-22Merge pull request #11094 from liamwhite/getliamwhite
kernel: misc cleanup of page table accessors
2023-07-21Merge pull request #11113 from liamwhite/nsd1bunnei
nsd: add GetApplicationServerEnvironmentType
2023-07-21core: remove remaining uses of dynamic_castLiam
2023-07-21general: reduce use of dynamic_castLiam
2023-07-21k_system_control: Always return some memory sizelat9nq
2023-07-21core,common: Give memory layout setting an enumlat9nq
Allows for 6GB and 8GB layouts to be selected.
2023-07-21settings: Require time zone setting value for stirnglat9nq
2023-07-21settings,general: Rename non-confirming enumslat9nq
2023-07-21configure_audio: Implement ui generationlat9nq
Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation configure_audio: Implement ui generation Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation settings: Make audio settings as enums
2023-07-21configure_system: Implement with for looplat9nq
2023-07-21configure_graphics_advance: Generate UI at runtimelat9nq
We can iterate through the AdvancedGraphics settings and generate the UI during runtime. This doesn't help runtime efficiency, but it helps a ton in reducing the amount of work a developer needs in order to add a new setting.
2023-07-21settings,core,config_sys: Remove optional type from custom_rtc, rng_seedlat9nq
core: Fix MSVC errors
2023-07-21settings,video_core: Consolidate ASTC decoding optionslat9nq
Just puts them all neatly into one place.
2023-07-21Merge pull request #11096 from german77/amiiboooliamwhite
service: nfc: Update Implementation to match with latest RE
2023-07-19Merge pull request #11116 from lat9nq/clang-shadowingliamwhite
general: Silence -Wshadow{,-uncaptured-local} warnings
2023-07-19Merge pull request #11114 from Kelebek1/warningsliamwhite
Mark SetIdleTimeDetectionExtension logging as debug
2023-07-18general: Silence -Wshadow{,-uncaptured-local} warningslat9nq
These occur in the latest commits in LLVM Clang.
2023-07-18Debug SetIdleTimeDetectionExtensionKelebek1
2023-07-17nsd: add GetApplicationServerEnvironmentTypeLiam
2023-07-17ssl: Link with crypt32 for secure channel backendMorph
2023-07-17ssl: Reorder inclusionsMorph
2023-07-17network: Forward declarationsMorph
2023-07-17service: nfc: Update Implementation to match with latest RENarr the Reg
2023-07-16Merge pull request #10912 from comex/sslliamwhite
Implement SSL service
2023-07-15Fixes and workarounds to make UBSan happier on macOScomex
There are still some other issues not addressed here, but it's a start. Workarounds for false-positive reports: - `RasterizerAccelerated`: Put a gigantic array behind a `unique_ptr`, because UBSan has a [hardcoded limit](https://stackoverflow.com/questions/64531383/c-runtime-error-using-fsanitize-undefined-object-has-a-possibly-invalid-vp) of how big it thinks objects can be, specifically when dealing with offset-to-top values used with multiple inheritance. Hopefully this doesn't have a performance impact. - `QueryCacheBase::QueryCacheBase`: Avoid an operation that UBSan thinks is UB even though it at least arguably isn't. See the link in the comment for more information. Fixes for correct reports: - `PageTable`, `Memory`: Use `uintptr_t` values instead of pointers to avoid UB from pointer overflow (when pointer arithmetic wraps around the address space). - `KScheduler::Reload`: `thread->GetOwnerProcess()` can be `nullptr`; avoid calling methods on it in this case. (The existing code returns a garbage reference to a field, which is then passed into `LoadWatchpointArray`, and apparently it's never used, so it's harmless in practice but still triggers UBSan.) - `KAutoObject::Close`: This function calls `this->Destroy()`, which overwrites the beginning of the object with junk (specifically a free list pointer). Then it calls `this->UnregisterWithKernel()`. UBSan complains about a type mismatch because the vtable has been overwritten, and I believe this is indeed UB. `UnregisterWithKernel` also loads `m_kernel` from the 'freed' object, which seems to be technically safe (the overwriting doesn't extend as far as that field), but seems dubious. Switch to a `static` method and load `m_kernel` in advance.
2023-07-14kernel: reduce page table region checkingLiam