2020-02-07 19:51:58 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-02-07 19:51:58 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesosphere/kern_common.hpp>
|
|
|
|
#include <mesosphere/kern_k_synchronization_object.hpp>
|
2020-03-14 06:12:47 +00:00
|
|
|
#include <mesosphere/kern_k_server_session.hpp>
|
|
|
|
#include <mesosphere/kern_k_client_session.hpp>
|
2020-02-07 19:51:58 +00:00
|
|
|
#include <mesosphere/kern_slab_helpers.hpp>
|
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
2020-03-14 06:12:47 +00:00
|
|
|
class KClientPort;
|
|
|
|
class KProcess;
|
|
|
|
|
2021-09-18 05:01:58 +00:00
|
|
|
class KSession final : public KAutoObjectWithSlabHeapAndContainer<KSession, KAutoObjectWithList, true> {
|
2020-02-07 19:51:58 +00:00
|
|
|
MESOSPHERE_AUTOOBJECT_TRAITS(KSession, KAutoObject);
|
2020-03-14 06:12:47 +00:00
|
|
|
private:
|
|
|
|
enum class State : u8 {
|
|
|
|
Invalid = 0,
|
|
|
|
Normal = 1,
|
|
|
|
ClientClosed = 2,
|
|
|
|
ServerClosed = 3,
|
|
|
|
};
|
|
|
|
private:
|
2021-10-16 23:13:10 +00:00
|
|
|
std::atomic<std::underlying_type<State>::type> m_atomic_state;
|
|
|
|
bool m_initialized;
|
2020-12-18 01:18:47 +00:00
|
|
|
KServerSession m_server;
|
|
|
|
KClientSession m_client;
|
|
|
|
KClientPort *m_port;
|
|
|
|
uintptr_t m_name;
|
|
|
|
KProcess *m_process;
|
2021-04-07 21:45:38 +00:00
|
|
|
private:
|
|
|
|
ALWAYS_INLINE void SetState(State state) {
|
|
|
|
m_atomic_state = static_cast<u8>(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE State GetState() const {
|
|
|
|
return static_cast<State>(m_atomic_state.load());
|
|
|
|
}
|
2020-02-07 19:51:58 +00:00
|
|
|
public:
|
2020-03-14 06:12:47 +00:00
|
|
|
constexpr KSession()
|
2021-10-16 23:13:10 +00:00
|
|
|
: m_atomic_state(static_cast<std::underlying_type<State>::type>(State::Invalid)), m_initialized(), m_server(), m_client(), m_port(), m_name(), m_process()
|
2020-03-14 06:12:47 +00:00
|
|
|
{
|
|
|
|
/* ... */
|
|
|
|
}
|
|
|
|
|
2020-07-09 21:49:51 +00:00
|
|
|
void Initialize(KClientPort *client_port, uintptr_t name);
|
|
|
|
virtual void Finalize() override;
|
|
|
|
|
2020-12-18 01:18:47 +00:00
|
|
|
virtual bool IsInitialized() const override { return m_initialized; }
|
|
|
|
virtual uintptr_t GetPostDestroyArgument() const override { return reinterpret_cast<uintptr_t>(m_process); }
|
2020-03-14 06:12:47 +00:00
|
|
|
|
|
|
|
static void PostDestroy(uintptr_t arg);
|
|
|
|
|
2020-07-09 21:49:51 +00:00
|
|
|
void OnServerClosed();
|
|
|
|
void OnClientClosed();
|
|
|
|
|
2021-04-07 21:45:38 +00:00
|
|
|
bool IsServerClosed() const { return this->GetState() != State::Normal; }
|
|
|
|
bool IsClientClosed() const { return this->GetState() != State::Normal; }
|
2020-07-09 21:49:51 +00:00
|
|
|
|
2020-12-18 01:18:47 +00:00
|
|
|
Result OnRequest(KSessionRequest *request) { return m_server.OnRequest(request); }
|
2020-03-14 06:12:47 +00:00
|
|
|
|
2020-12-18 01:18:47 +00:00
|
|
|
KClientSession &GetClientSession() { return m_client; }
|
|
|
|
KServerSession &GetServerSession() { return m_server; }
|
|
|
|
const KClientSession &GetClientSession() const { return m_client; }
|
|
|
|
const KServerSession &GetServerSession() const { return m_server; }
|
2020-12-10 09:44:27 +00:00
|
|
|
|
2020-12-18 01:18:47 +00:00
|
|
|
const KClientPort *GetParent() const { return m_port; }
|
2020-02-07 19:51:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|