2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-15 02:18:42 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
2018-02-03 17:09:33 +00:00
|
|
|
#include "core/hle/kernel/session.h"
|
2017-10-15 02:18:42 +00:00
|
|
|
#include "core/hle/service/sm/controller.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::SM {
|
2017-10-15 02:18:42 +00:00
|
|
|
|
2017-10-15 05:24:22 +00:00
|
|
|
void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
|
2018-01-23 23:03:09 +00:00
|
|
|
ASSERT_MSG(!ctx.Session()->IsDomain(), "session is alread a domain");
|
|
|
|
ctx.Session()->ConvertToDomain();
|
2017-12-29 05:36:22 +00:00
|
|
|
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2017-10-15 05:24:22 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-23 23:03:09 +00:00
|
|
|
rb.Push<u32>(1); // Converted sessions start with 1 request handler
|
2017-12-29 05:36:22 +00:00
|
|
|
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(Service, "called, server_session={}", ctx.Session()->GetObjectId());
|
2017-10-15 05:24:22 +00:00
|
|
|
}
|
|
|
|
|
2017-12-29 05:39:34 +00:00
|
|
|
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
|
2018-02-03 17:09:33 +00:00
|
|
|
// TODO(bunnei): This is just creating a new handle to the same Session. I assume this is wrong
|
|
|
|
// and that we probably want to actually make an entirely new Session, but we still need to
|
|
|
|
// verify this on hardware.
|
2018-01-24 03:33:30 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1, IPC::ResponseBuilder::Flags::AlwaysMoveHandles};
|
2017-12-29 05:39:34 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-02-03 17:09:33 +00:00
|
|
|
Kernel::SharedPtr<Kernel::ClientSession> session{ctx.Session()->parent->client};
|
|
|
|
rb.PushMoveObjects(session);
|
2017-12-29 05:39:34 +00:00
|
|
|
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_DEBUG(Service, "called, session={}", session->GetObjectId());
|
2017-12-29 05:39:34 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 19:41:43 +00:00
|
|
|
void Controller::DuplicateSessionEx(Kernel::HLERequestContext& ctx) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service, "(STUBBED) called, using DuplicateSession");
|
2018-02-03 17:09:33 +00:00
|
|
|
|
|
|
|
DuplicateSession(ctx);
|
2018-01-17 19:41:43 +00:00
|
|
|
}
|
|
|
|
|
2017-10-15 02:18:42 +00:00
|
|
|
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
|
2018-01-24 00:52:18 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
2017-10-15 02:18:42 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2017-10-15 05:24:22 +00:00
|
|
|
rb.Push<u32>(0x500);
|
2017-12-29 05:39:34 +00:00
|
|
|
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Service, "(STUBBED) called");
|
2017-10-15 02:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Controller::Controller() : ServiceFramework("IpcController") {
|
|
|
|
static const FunctionInfo functions[] = {
|
2017-10-15 05:24:22 +00:00
|
|
|
{0x00000000, &Controller::ConvertSessionToDomain, "ConvertSessionToDomain"},
|
2017-10-15 02:18:42 +00:00
|
|
|
{0x00000001, nullptr, "ConvertDomainToSession"},
|
2017-12-29 05:39:34 +00:00
|
|
|
{0x00000002, &Controller::DuplicateSession, "DuplicateSession"},
|
2017-10-15 02:18:42 +00:00
|
|
|
{0x00000003, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"},
|
2018-01-17 19:41:43 +00:00
|
|
|
{0x00000004, &Controller::DuplicateSessionEx, "DuplicateSessionEx"},
|
2017-10-15 02:18:42 +00:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::SM
|