summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-3/+2
[REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2021-05-11hle: ipc: Add declarations for TIPC.bunnei1-1/+16
2021-01-15core: Silence Wclass-memaccess warningsReinUsesLisp1-2/+2
This requires making several types trivial and properly initialize them whenever they are called.
2021-01-15common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINITReinUsesLisp1-2/+2
INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
2019-11-04common_func: Use std::array for INSERT_PADDING_* macros.bunnei1-2/+4
- Zero initialization here is useful for determinism.
2019-03-05core/hle/ipc: Remove unnecessary includesLioncash1-2/+2
Removes a few inclusion dependencies from the headers or replaces existing ones with ones that don't indirectly include the required headers. This allows removing an inclusion of core/memory.h, meaning that if the memory header is ever changed in the future, it won't result in rebuilding the entirety of the HLE services (as the IPC headers are used quite ubiquitously throughout the HLE service implementations).
2019-02-06remove all occurance of specifying endianness inside BitFieldWeiyi Wang1-22/+22
This commit it automatically generated by command in zsh: sed -i -- 's/BitField<\(.*\)_le>/BitField<\1>/g' **/*(D.) BitField is now aware to endianness and default to little endian. It expects a value representation type without storage specification for its template parameter.
2018-10-24kernel/errors: Remove now-unused, unnecessary, error codesLioncash1-5/+0
Now that we've gotten the innaccurate error codes out of the way, we can finally toss away a bunch of these, trimming down the error codes to ones that are actually used and knocking out two TODO comments.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-1/+1
2018-09-13ipc: minor fixValentin Vanelslande1-1/+1
2018-05-30add IPC CommandType & Some HID FunctionInfo (#487)greggameplayer1-0/+3
* add some CommandType * add some hid FunctionInfo * add some other HID FunctionInfo * delete non useful comments
2018-05-17Added RequestWithContext & ControlWithContextDavid Marcec1-0/+2
2018-05-02ipc: Add support for PopIpcInterface() method.bunnei1-0/+1
- This can be used for domain objects as inputs to service functions.
2018-02-14hle_ipc: Add helper functions for reading and writing buffers.bunnei1-0/+4
2018-01-18Stub PopLaunchParameter and implement Buffer C Descriptors reading on hle_ipc (#96)gdkchan1-0/+4
* Stub PopLaunchParameter and implement Buffer C Descriptors reading * Address PR feedback * Ensure we push a u64 not a size_t * Fix formatting
2018-01-17ipc: Implement domain command CloseVirtualHandle.bunnei1-1/+6
2018-01-16clang-formatMerryMage1-6/+5
2018-01-11IPC: Corrected some definitions for the buffer C descriptor flags.Subv1-2/+2
2018-01-07IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.Subv1-112/+17
Popping objects from the buffer is still not implemented.
2018-01-07IPC: Use the correct size when pushing raw data to the command buffer and fixed pushing domain objects.Subv1-2/+8
Domain object ids are always stored immediately after the raw data.
2017-11-01hle: Use Switch formatted result codes.bunnei1-1/+0
2017-10-15hle: Implement ConvertSessionToDomain, various cleanups.bunnei1-0/+10
2017-10-15hle: Initial implementation of NX service framework and IPC.bunnei1-64/+125
2017-09-30Fixed type conversion ambiguityHuw Pascoe1-4/+4
2017-06-11ServiceFramework: Use separate copy of command bufferYuri Kunde Schlesner1-0/+3
Copy the IPC command buffer to/from the request context before/after the handler is invoked. This is part of a move away from using global data for handling IPC requests.
2017-05-25Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner1-0/+7
2017-03-18move push out of class body and add u8 u16 bool specializationsLectem1-3/+4
2017-02-27Doxygen: Amend minor issues (#2593)Mat M1-2/+2
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
2017-02-14HLE/IPC: Fix uninitialized variables in helpers (#2568)Yuri Kunde Schlesner1-3/+3
Fixes #2567
2016-12-30fix comments alignmentLectem1-22/+22
2016-12-26IPC helpersLectem1-48/+63
2016-12-14Fixed the codestyle to match our clang-format rules.Subv1-1/+1
2016-12-09Kernel/IPC: Small codestyle cleanupSubv1-2/+0
2016-12-08Use std::move where appropriate.Subv1-136/+1
2016-12-05HLE: Use a member variable instead of a virtual function to retrieve the max number of sessions that can be connected to an HLE service at the same time.Subv1-5/+13
2016-12-05Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl.Subv1-6/+22
HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services.
2016-12-05KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it.Subv1-4/+10
2016-12-01Fixed the rebase mistakes.Subv1-25/+25
2016-12-01A bit of a redesign.Subv1-5/+174
Sessions and Ports are now detached from each other. HLE services are handled by means of a SessionRequestHandler class, Interface now inherits from this class. The File and Directory classes are no longer kernel objects, but SessionRequestHandlers instead, bound to a ServerSession when requested. File::OpenLinkFile now creates a new session pair and binds the File instance to it.
2016-12-01IPC/HLE: Associate the ClientSessions with their parent port's HLE interface if it exists.Subv1-1/+1
Pass the triggering ServerSession to the HLE command handler to differentiate which session caused the request.
2016-12-01Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and is now its own standalone class.Subv1-8/+4
Interface is now used by aggregation in ClientPort, to forward service commands to their HLE implementation if needed.
2016-12-01fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.Subv1-1/+1
2016-12-01 Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.Subv1-5/+16
All handles obtained via srv::GetServiceHandle or svcConnectToPort are references to ClientSessions. Service modules will wait on the counterpart of those ClientSessions (Called ServerSessions) using svcReplyAndReceive or svcWaitSynchronization[1|N], and will be awoken when a SyncRequest is performed. HLE Interfaces are now ClientPorts which override the HandleSyncRequest virtual member function to perform command handling immediately.
2016-11-30Set client SDK version to Service APIsmailwl1-0/+12
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+0
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-5/+5
2015-06-28Core: Cleanup file_sys includes.Emmanuel Gil Peyrot1-0/+2
2015-06-28Common: Cleanup key_map includes.Emmanuel Gil Peyrot1-1/+0
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-1/+1
2015-04-14De-inline functions from Interface, removing them from service.hYuri Kunde Schlesner1-50/+5
This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
2015-03-04Services: Moved the PTM and APT services to their own folderSubv1-0/+3
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
2015-02-02Service: Store function names as const char* instead of std::stringYuri Kunde Schlesner1-6/+6
Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner1-22/+9
2015-02-02Make Port/Service registration and querying more HW-accurateYuri Kunde Schlesner1-24/+6
2015-01-10Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance.archshift1-11/+20
2015-01-07Fix double-free in Service manager during shutdownYuri Kunde Schlesner1-11/+4
Fixes #423.
2014-12-28Kernel: New handle managerYuri Kunde Schlesner1-2/+3
This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive.
2014-12-28Rename ObjectPool to HandleTableYuri Kunde Schlesner1-2/+2
2014-12-21License changepurpasmart961-1/+1
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner1-18/+8
This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-7/+1
2014-11-25Log the cmd_buff arguments when citra comes across an unimplemented functionarchshift1-12/+12
2014-11-24Remove duplicated docs/update them for changed parameters.Yuri Kunde Schlesner1-10/+0
2014-11-24HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner1-6/+6
All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-7/+7
2014-10-26Add `override` keyword through the code.Yuri Kunde Schlesner1-5/+5
This was automated using `clang-modernize`.
2014-09-06core: Pass string by reference in FetchFromPortName and DeleteServiceLioncash1-2/+2
2014-08-18Core: Alter the kernel string functions to use std::string instead of const char*.Lioncash1-5/+5
Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei1-1/+1
2014-06-13Kernel: Updated several member functions to be constbunnei1-2/+2
2014-06-05service: added a error log messages for unimplemented WaitSynchronizationbunnei1-0/+1
2014-05-30service: cleaned up log messagesbunnei1-2/+2
2014-05-30service: added additional hack to return success on unimplemented service callsbunnei1-2/+10
2014-05-29service: changed interface to return 0 (no error) when a service method is unimplemented - hack to make apps boot furtherbunnei1-2/+2
2014-05-27kernel: added WaitSynchronization method to Kernel::Objectbunnei1-0/+10
2014-05-27kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei1-3/+4
2014-05-27service: Renamed Sync to SyncRequestbunnei1-1/+1
2014-05-23service: fixed typo that MSVC did not catch as an errorbunnei1-1/+1
2014-05-21service: removed redundant include of common_types.hbunnei1-1/+0
2014-05-21renamed "syscall" module to "svc" (more accurate naming)bunnei1-1/+1
2014-05-21- created a Kernel namespacebunnei1-6/+6
- cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles
2014-05-19- renamed NewHandle to CreateHandlebunnei1-5/+7
- updated CreateHandle/DeleteHandle to use KernelObject's
2014-05-19- updated service(s) to be KernelObject'sbunnei1-36/+15
- various cleanups
2014-05-19renamed "UID" to "Handle" where appropriatebunnei1-12/+10
2014-05-19- moved Handle/Result definitions to kernel.hbunnei1-5/+7
- added ResetType enum
2014-05-08- removed HLE mem "hack" and replaced with kernel mem regionbunnei1-1/+11
- added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
2014-04-28fixed weird spacingbunnei1-1/+1
2014-04-25- refactored how service functions are calledbunnei1-8/+32
- added option to create/delete service handles
2014-04-16- added stubbed out GSP::Gpu service interfacebunnei1-4/+6
- various cleanups/refactors to HLE services
2014-04-16restructured hle:services completely to use function lookup tablesbunnei1-2/+26
2014-04-16- extracted srv: calls from service.cpp and put in its own modulebunnei1-8/+11
- added function tables for service calls - lots of refactoring
2014-04-13added framework for APT service (application and title launching service)bunnei1-0/+1
2014-04-13cleanups to service HLEbunnei1-2/+2
2014-04-13- added HLE to connect to "srv:" servicebunnei1-2/+55
- added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function
2014-04-12- renamed hle_syscall to just syscallbunnei1-0/+60
- added service.h as an initial service interface