2014-12-14 00:30:11 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-14 00:30:11 -05:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-19 21:37:14 -05:00
|
|
|
#include <memory>
|
2015-06-21 08:40:28 -04:00
|
|
|
#include <string>
|
2019-04-06 01:41:43 -04:00
|
|
|
#include <utility>
|
2018-07-31 08:06:09 -04:00
|
|
|
#include <vector>
|
|
|
|
|
2018-08-01 22:40:00 -04:00
|
|
|
#include "core/hle/kernel/object.h"
|
2017-05-29 18:45:30 -04:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2015-06-21 08:40:28 -04:00
|
|
|
#include "core/hle/result.h"
|
2014-12-14 00:30:11 -05:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2017-01-04 23:23:17 -05:00
|
|
|
class ClientPort;
|
2018-08-28 12:30:33 -04:00
|
|
|
class ClientSession;
|
|
|
|
class HLERequestContext;
|
|
|
|
class KernelCore;
|
2017-01-04 23:23:17 -05:00
|
|
|
class ServerSession;
|
2017-06-08 03:33:57 -04:00
|
|
|
class Session;
|
2017-06-05 00:52:19 -04:00
|
|
|
class SessionRequestHandler;
|
2017-05-29 19:45:42 -04:00
|
|
|
class Thread;
|
2016-06-14 19:03:30 -04:00
|
|
|
|
2014-12-14 00:30:11 -05:00
|
|
|
/**
|
2016-06-14 19:03:30 -04:00
|
|
|
* Kernel object representing the server endpoint of an IPC session. Sessions are the basic CTR-OS
|
2014-12-14 00:30:11 -05: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 12:33:49 -05: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 00:30:11 -05:00
|
|
|
*/
|
2016-12-05 11:02:08 -05:00
|
|
|
class ServerSession final : public WaitObject {
|
2014-12-14 00:30:11 -05:00
|
|
|
public:
|
2016-11-30 23:28:31 -05:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "ServerSession";
|
|
|
|
}
|
2014-12-14 00:30:11 -05:00
|
|
|
|
2019-04-03 10:35:09 -04:00
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:30:52 -04:00
|
|
|
static constexpr HandleType HANDLE_TYPE = HandleType::ServerSession;
|
2016-11-30 23:28:31 -05:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2016-06-14 19:03:30 -04:00
|
|
|
|
2019-03-05 18:51:16 -05:00
|
|
|
Session* GetParent() {
|
|
|
|
return parent.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Session* GetParent() const {
|
|
|
|
return parent.get();
|
|
|
|
}
|
|
|
|
|
2019-04-06 01:41:43 -04:00
|
|
|
using SessionPair = std::pair<SharedPtr<ServerSession>, SharedPtr<ClientSession>>;
|
2016-12-08 11:06:19 -05:00
|
|
|
|
2016-06-14 19:03:30 -04:00
|
|
|
/**
|
|
|
|
* Creates a pair of ServerSession and an associated ClientSession.
|
2018-08-28 12:30:33 -04:00
|
|
|
* @param kernel The kernal instance to create the session pair under.
|
2017-02-26 20:58:51 -05:00
|
|
|
* @param name Optional name of the ports.
|
2017-01-04 23:23:17 -05:00
|
|
|
* @param client_port Optional The ClientPort that spawned this session.
|
2016-06-14 19:03:30 -04:00
|
|
|
* @return The created session tuple
|
|
|
|
*/
|
2018-08-28 12:30:33 -04:00
|
|
|
static SessionPair CreateSessionPair(KernelCore& kernel, const std::string& name = "Unknown",
|
2017-06-06 01:39:26 -04:00
|
|
|
SharedPtr<ClientPort> client_port = nullptr);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 00:30:11 -05:00
|
|
|
|
|
|
|
/**
|
2016-06-14 19:03:30 -04:00
|
|
|
* Handle a sync request from the emulated application.
|
2017-06-20 18:33:28 -04:00
|
|
|
* @param thread Thread that initiated the request.
|
2016-06-14 19:03:30 -04:00
|
|
|
* @returns ResultCode from the operation.
|
2014-12-14 00:30:11 -05:00
|
|
|
*/
|
2017-06-20 18:33:28 -04:00
|
|
|
ResultCode HandleSyncRequest(SharedPtr<Thread> thread);
|
2015-01-18 20:40:53 -05:00
|
|
|
|
2019-04-01 18:19:42 -04:00
|
|
|
bool ShouldWait(const Thread* thread) const override;
|
2015-01-20 17:41:12 -05:00
|
|
|
|
2017-01-01 16:53:22 -05:00
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-20 17:41:12 -05:00
|
|
|
|
2019-03-05 18:51:16 -05:00
|
|
|
/// Called when a client disconnection occurs.
|
|
|
|
void ClientDisconnected();
|
2018-01-23 18:03:09 -05:00
|
|
|
|
2019-03-05 18:51:16 -05: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 18:33:28 -04:00
|
|
|
|
2019-03-05 18:51:16 -05: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 18:33:28 -04:00
|
|
|
|
2018-01-23 18:03:09 -05:00
|
|
|
/// Returns true if the session has been converted to a domain, otherwise False
|
|
|
|
bool IsDomain() const {
|
2018-08-15 06:50:22 -04: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 18:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts the session to a domain at the end of the current command
|
|
|
|
void ConvertToDomain() {
|
|
|
|
convert_to_domain = true;
|
|
|
|
}
|
|
|
|
|
2016-12-05 11:02:08 -05:00
|
|
|
private:
|
2018-08-28 12:30:33 -04:00
|
|
|
explicit ServerSession(KernelCore& kernel);
|
2016-12-05 11:02:08 -05:00
|
|
|
~ServerSession() override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a server session. The server session can have an optional HLE handler,
|
|
|
|
* which will be invoked to handle the IPC requests that this session receives.
|
2018-08-28 12:30:33 -04:00
|
|
|
* @param kernel The kernel instance to create this server session under.
|
2016-12-05 11:02:08 -05:00
|
|
|
* @param name Optional name of the server session.
|
|
|
|
* @return The created server session
|
|
|
|
*/
|
2018-08-28 12:30:33 -04:00
|
|
|
static ResultVal<SharedPtr<ServerSession>> Create(KernelCore& kernel,
|
|
|
|
std::string name = "Unknown");
|
2018-01-23 18:03:09 -05:00
|
|
|
|
2018-02-18 13:22:19 -05: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 18:51:16 -05: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.
|
|
|
|
std::vector<SharedPtr<Thread>> pending_requesting_threads;
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
SharedPtr<Thread> currently_handling;
|
|
|
|
|
2018-01-23 18:03:09 -05:00
|
|
|
/// When set to True, converts the session to a domain at the end of the command
|
|
|
|
bool convert_to_domain{};
|
2019-03-05 18:51:16 -05:00
|
|
|
|
|
|
|
/// The name of this session (optional)
|
|
|
|
std::string name;
|
2014-12-14 00:30:11 -05:00
|
|
|
};
|
2016-12-09 12:52:12 -05:00
|
|
|
|
2018-01-20 02:48:02 -05:00
|
|
|
} // namespace Kernel
|