2014-12-14 05:30:11 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
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>
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
2014-12-14 05:30:11 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-01-05 04:23:17 +00:00
|
|
|
#include "core/hle/kernel/session.h"
|
2017-05-29 22:45:30 +00:00
|
|
|
#include "core/hle/kernel/wait_object.h"
|
2015-06-21 12:40:28 +00:00
|
|
|
#include "core/hle/result.h"
|
2015-05-13 01:38:29 +00:00
|
|
|
#include "core/memory.h"
|
2014-12-14 05:30:11 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2016-06-14 23:03:30 +00:00
|
|
|
class ClientSession;
|
2017-01-05 04:23:17 +00:00
|
|
|
class ClientPort;
|
|
|
|
class ServerSession;
|
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
|
|
|
*/
|
2016-12-05 16:02:08 +00:00
|
|
|
class ServerSession final : public WaitObject {
|
2014-12-14 05:30:11 +00:00
|
|
|
public:
|
2016-12-01 04:28:31 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "ServerSession";
|
|
|
|
}
|
2014-12-14 05:30:11 +00:00
|
|
|
|
2016-06-14 23:03:30 +00:00
|
|
|
static const 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
|
|
|
|
2016-12-08 16:06:19 +00:00
|
|
|
using SessionPair = std::tuple<SharedPtr<ServerSession>, SharedPtr<ClientSession>>;
|
|
|
|
|
2016-06-14 23:03:30 +00:00
|
|
|
/**
|
|
|
|
* Creates a pair of ServerSession and an associated ClientSession.
|
2017-02-27 01:58:51 +00:00
|
|
|
* @param name Optional name of the ports.
|
2017-01-05 04:23:17 +00:00
|
|
|
* @param client_port Optional The ClientPort that spawned this session.
|
2016-06-14 23:03:30 +00:00
|
|
|
* @return The created session tuple
|
|
|
|
*/
|
2017-06-06 05:39:26 +00:00
|
|
|
static SessionPair CreateSessionPair(const std::string& name = "Unknown",
|
|
|
|
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 05:30:11 +00:00
|
|
|
|
|
|
|
/**
|
2016-06-14 23:03:30 +00:00
|
|
|
* Handle a sync request from the emulated application.
|
|
|
|
* @returns ResultCode from the operation.
|
2014-12-14 05:30:11 +00:00
|
|
|
*/
|
2016-12-05 16:02:08 +00:00
|
|
|
ResultCode HandleSyncRequest();
|
2015-01-19 01:40:53 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool ShouldWait(Thread* thread) const override;
|
2015-01-20 22:41:12 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
void Acquire(Thread* thread) override;
|
2015-01-20 22:41:12 +00:00
|
|
|
|
2017-01-05 04:23:17 +00:00
|
|
|
std::string name; ///< The name of this session (optional)
|
|
|
|
bool signaled; ///< Whether there's new data available to this ServerSession
|
|
|
|
std::shared_ptr<Session> parent; ///< The parent session, which links to the client endpoint.
|
2017-06-05 04:52:19 +00:00
|
|
|
std::shared_ptr<SessionRequestHandler>
|
2016-12-14 17:33:49 +00:00
|
|
|
hle_handler; ///< This session's HLE request handler (optional)
|
2016-12-05 16:02:08 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
ServerSession();
|
|
|
|
~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.
|
|
|
|
* @param name Optional name of the server session.
|
|
|
|
* @return The created server session
|
|
|
|
*/
|
2017-06-06 05:39:26 +00:00
|
|
|
static ResultVal<SharedPtr<ServerSession>> Create(std::string name = "Unknown");
|
2014-12-14 05:30:11 +00:00
|
|
|
};
|
2016-12-09 17:52:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs command buffer translation for an HLE IPC request.
|
|
|
|
* The command buffer from the ServerSession thread's TLS is copied into a
|
|
|
|
* buffer and all descriptors in the buffer are processed.
|
2016-12-14 17:33:49 +00:00
|
|
|
* TODO(Subv): Implement this function, currently we do not support multiple processes running at
|
|
|
|
* once, but once that is implemented we'll need to properly translate all descriptors
|
|
|
|
* in the command buffer.
|
2016-12-09 17:52:12 +00:00
|
|
|
*/
|
|
|
|
ResultCode TranslateHLERequest(ServerSession* server_session);
|
2014-12-14 05:30:11 +00:00
|
|
|
}
|