2019-11-25 23:28:48 +00:00
|
|
|
// Copyright 2019 yuzu emulator team
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-14 05:30:11 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-20 02:37:14 +00:00
|
|
|
#include <memory>
|
2015-06-21 12:40:28 +00:00
|
|
|
#include <string>
|
2019-04-06 05:41:43 +00:00
|
|
|
#include <utility>
|
2018-07-31 12:06:09 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
#include "common/threadsafe_queue.h"
|
2020-12-22 06:36:53 +00:00
|
|
|
#include "core/hle/kernel/k_synchronization_object.h"
|
2020-12-10 05:27:05 +00:00
|
|
|
#include "core/hle/kernel/service_thread.h"
|
2015-06-21 12:40:28 +00:00
|
|
|
#include "core/hle/result.h"
|
2014-12-14 05:30:11 +00:00
|
|
|
|
2020-03-31 19:10:44 +00:00
|
|
|
namespace Core::Memory {
|
2019-11-26 19:10:49 +00:00
|
|
|
class Memory;
|
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
namespace Core::Timing {
|
2020-09-14 18:03:10 +00:00
|
|
|
class CoreTiming;
|
2019-11-25 23:28:48 +00:00
|
|
|
struct EventType;
|
2020-09-14 18:03:10 +00:00
|
|
|
} // namespace Core::Timing
|
2019-11-25 23:28:48 +00:00
|
|
|
|
2014-12-14 05:30:11 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
class HLERequestContext;
|
|
|
|
class KernelCore;
|
2017-06-08 07:33:57 +00:00
|
|
|
class Session;
|
2017-06-05 04:52:19 +00:00
|
|
|
class SessionRequestHandler;
|
2017-05-29 23:45:42 +00:00
|
|
|
class Thread;
|
2016-06-14 23:03:30 +00:00
|
|
|
|
2014-12-14 05:30:11 +00:00
|
|
|
/**
|
2016-06-14 23:03:30 +00:00
|
|
|
* Kernel object representing the server endpoint of an IPC session. Sessions are the basic CTR-OS
|
2014-12-14 05:30:11 +00:00
|
|
|
* primitive for communication between different processes, and are used to implement service calls
|
|
|
|
* to the various system services.
|
|
|
|
*
|
|
|
|
* To make a service call, the client must write the command header and parameters to the buffer
|
|
|
|
* located at offset 0x80 of the TLS (Thread-Local Storage) area, then execute a SendSyncRequest
|
2016-12-14 17:33:49 +00:00
|
|
|
* SVC call with its ClientSession handle. The kernel will read the command header, using it to
|
|
|
|
* marshall the parameters to the process at the server endpoint of the session.
|
|
|
|
* After the server replies to the request, the response is marshalled back to the caller's
|
|
|
|
* TLS buffer and control is transferred back to it.
|
2014-12-14 05:30:11 +00:00
|
|
|
*/
|
2020-12-22 06:36:53 +00:00
|
|
|
class ServerSession final : public KSynchronizationObject {
|
2020-12-10 05:27:05 +00:00
|
|
|
friend class ServiceThread;
|
|
|
|
|
2014-12-14 05:30:11 +00:00
|
|
|
public:
|
2019-11-25 01:15:51 +00:00
|
|
|
explicit ServerSession(KernelCore& kernel);
|
|
|
|
~ServerSession() override;
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
friend class Session;
|
|
|
|
|
|
|
|
static ResultVal<std::shared_ptr<ServerSession>> Create(KernelCore& kernel,
|
|
|
|
std::shared_ptr<Session> parent,
|
|
|
|
std::string name = "Unknown");
|
|
|
|
|
2016-12-01 04:28:31 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "ServerSession";
|
|
|
|
}
|
2014-12-14 05:30:11 +00:00
|
|
|
|
2019-04-03 14:35:09 +00:00
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2019-04-11 20:30:52 +00:00
|
|
|
static constexpr HandleType HANDLE_TYPE = HandleType::ServerSession;
|
2016-12-01 04:28:31 +00:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2016-06-14 23:03:30 +00:00
|
|
|
|
2019-03-05 23:51:16 +00:00
|
|
|
Session* GetParent() {
|
|
|
|
return parent.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Session* GetParent() const {
|
|
|
|
return parent.get();
|
|
|
|
}
|
|
|
|
|
2017-06-06 05:39:26 +00:00
|
|
|
/**
|
|
|
|
* Sets the HLE handler for the session. This handler will be called to service IPC requests
|
|
|
|
* instead of the regular IPC machinery. (The regular IPC machinery is currently not
|
|
|
|
* implemented.)
|
|
|
|
*/
|
|
|
|
void SetHleHandler(std::shared_ptr<SessionRequestHandler> hle_handler_) {
|
|
|
|
hle_handler = std::move(hle_handler_);
|
|
|
|
}
|
2014-12-14 05:30:11 +00:00
|
|
|
|
|
|
|
/**
|
2016-06-14 23:03:30 +00:00
|
|
|
* Handle a sync request from the emulated application.
|
2019-11-26 19:10:49 +00:00
|
|
|
*
|
2020-09-14 18:03:10 +00:00
|
|
|
* @param thread Thread that initiated the request.
|
|
|
|
* @param memory Memory context to handle the sync request under.
|
|
|
|
* @param core_timing Core timing context to schedule the request event under.
|
2019-11-26 19:10:49 +00:00
|
|
|
*
|
2016-06-14 23:03:30 +00:00
|
|
|
* @returns ResultCode from the operation.
|
2014-12-14 05:30:11 +00:00
|
|
|
*/
|
2020-09-14 18:03:10 +00:00
|
|
|
ResultCode HandleSyncRequest(std::shared_ptr<Thread> thread, Core::Memory::Memory& memory,
|
|
|
|
Core::Timing::CoreTiming& core_timing);
|
2015-01-19 01:40:53 +00:00
|
|
|
|
2019-03-05 23:51:16 +00:00
|
|
|
/// Called when a client disconnection occurs.
|
|
|
|
void ClientDisconnected();
|
2018-01-23 23:03:09 +00:00
|
|
|
|
2019-03-05 23:51:16 +00:00
|
|
|
/// Adds a new domain request handler to the collection of request handlers within
|
|
|
|
/// this ServerSession instance.
|
|
|
|
void AppendDomainRequestHandler(std::shared_ptr<SessionRequestHandler> handler);
|
2017-06-20 22:33:28 +00:00
|
|
|
|
2019-03-05 23:51:16 +00:00
|
|
|
/// Retrieves the total number of domain request handlers that have been
|
|
|
|
/// appended to this ServerSession instance.
|
|
|
|
std::size_t NumDomainRequestHandlers() const;
|
2017-06-20 22:33:28 +00:00
|
|
|
|
2018-01-23 23:03:09 +00:00
|
|
|
/// Returns true if the session has been converted to a domain, otherwise False
|
|
|
|
bool IsDomain() const {
|
2018-08-15 10:50:22 +00:00
|
|
|
return !IsSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if this session has not been converted to a domain, otherwise false.
|
|
|
|
bool IsSession() const {
|
|
|
|
return domain_request_handlers.empty();
|
2018-01-23 23:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts the session to a domain at the end of the current command
|
|
|
|
void ConvertToDomain() {
|
|
|
|
convert_to_domain = true;
|
|
|
|
}
|
|
|
|
|
2020-12-22 06:36:53 +00:00
|
|
|
bool IsSignaled() const override;
|
|
|
|
|
2016-12-05 16:02:08 +00:00
|
|
|
private:
|
2019-11-25 23:28:48 +00:00
|
|
|
/// Queues a sync request from the emulated application.
|
2020-03-31 19:10:44 +00:00
|
|
|
ResultCode QueueSyncRequest(std::shared_ptr<Thread> thread, Core::Memory::Memory& memory);
|
2019-11-25 23:28:48 +00:00
|
|
|
|
|
|
|
/// Completes a sync request from the emulated application.
|
2020-12-10 05:27:05 +00:00
|
|
|
ResultCode CompleteSyncRequest(HLERequestContext& context);
|
2018-01-23 23:03:09 +00:00
|
|
|
|
2018-02-18 18:22:19 +00:00
|
|
|
/// Handles a SyncRequest to a domain, forwarding the request to the proper object or closing an
|
|
|
|
/// object handle.
|
|
|
|
ResultCode HandleDomainSyncRequest(Kernel::HLERequestContext& context);
|
|
|
|
|
2019-03-05 23:51:16 +00:00
|
|
|
/// The parent session, which links to the client endpoint.
|
|
|
|
std::shared_ptr<Session> parent;
|
|
|
|
|
|
|
|
/// This session's HLE request handler (applicable when not a domain)
|
|
|
|
std::shared_ptr<SessionRequestHandler> hle_handler;
|
|
|
|
|
|
|
|
/// This is the list of domain request handlers (after conversion to a domain)
|
|
|
|
std::vector<std::shared_ptr<SessionRequestHandler>> domain_request_handlers;
|
|
|
|
|
|
|
|
/// List of threads that are pending a response after a sync request. This list is processed in
|
|
|
|
/// a LIFO manner, thus, the last request will be dispatched first.
|
|
|
|
/// TODO(Subv): Verify if this is indeed processed in LIFO using a hardware test.
|
2019-11-25 01:15:51 +00:00
|
|
|
std::vector<std::shared_ptr<Thread>> pending_requesting_threads;
|
2019-03-05 23:51:16 +00:00
|
|
|
|
|
|
|
/// Thread whose request is currently being handled. A request is considered "handled" when a
|
|
|
|
/// response is sent via svcReplyAndReceive.
|
|
|
|
/// TODO(Subv): Find a better name for this.
|
2019-11-25 01:15:51 +00:00
|
|
|
std::shared_ptr<Thread> currently_handling;
|
2019-03-05 23:51:16 +00:00
|
|
|
|
2018-01-23 23:03:09 +00:00
|
|
|
/// When set to True, converts the session to a domain at the end of the command
|
|
|
|
bool convert_to_domain{};
|
2019-03-05 23:51:16 +00:00
|
|
|
|
|
|
|
/// The name of this session (optional)
|
|
|
|
std::string name;
|
2019-11-25 23:28:48 +00:00
|
|
|
|
2020-12-10 05:27:05 +00:00
|
|
|
/// Thread to dispatch service requests
|
2020-12-15 08:41:48 +00:00
|
|
|
std::weak_ptr<ServiceThread> service_thread;
|
2014-12-14 05:30:11 +00:00
|
|
|
};
|
2016-12-09 17:52:12 +00:00
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace Kernel
|