2019-06-21 02:23:40 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-06-21 02:23:40 +01: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
|
2019-10-25 08:12:47 +01:00
|
|
|
#include <stratosphere.hpp>
|
2019-06-21 02:23:40 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::sm::impl {
|
2019-06-21 02:23:40 +01:00
|
|
|
|
|
|
|
/* Process management. */
|
2019-11-21 12:03:19 +00:00
|
|
|
Result RegisterProcess(os::ProcessId process_id, ncm::ProgramId program_id, cfg::OverrideStatus, const void *acid_sac, size_t acid_sac_size, const void *aci_sac, size_t aci_sac_size);
|
2019-10-28 04:43:01 +00:00
|
|
|
Result UnregisterProcess(os::ProcessId process_id);
|
2019-06-21 02:23:40 +01:00
|
|
|
|
|
|
|
/* Service management. */
|
|
|
|
Result HasService(bool *out, ServiceName service);
|
2019-07-03 06:21:47 +01:00
|
|
|
Result WaitService(ServiceName service);
|
2019-10-28 04:43:01 +00:00
|
|
|
Result GetServiceHandle(Handle *out, os::ProcessId process_id, ServiceName service);
|
|
|
|
Result RegisterService(Handle *out, os::ProcessId process_id, ServiceName service, size_t max_sessions, bool is_light);
|
2019-06-21 02:23:40 +01:00
|
|
|
Result RegisterServiceForSelf(Handle *out, ServiceName service, size_t max_sessions);
|
2019-10-28 04:43:01 +00:00
|
|
|
Result UnregisterService(os::ProcessId process_id, ServiceName service);
|
2019-06-21 02:23:40 +01:00
|
|
|
|
|
|
|
/* Mitm extensions. */
|
|
|
|
Result HasMitm(bool *out, ServiceName service);
|
2019-07-03 06:21:47 +01:00
|
|
|
Result WaitMitm(ServiceName service);
|
2019-10-28 04:43:01 +00:00
|
|
|
Result InstallMitm(Handle *out, Handle *out_query, os::ProcessId process_id, ServiceName service);
|
|
|
|
Result UninstallMitm(os::ProcessId process_id, ServiceName service);
|
|
|
|
Result DeclareFutureMitm(os::ProcessId process_id, ServiceName service);
|
2019-11-21 12:03:19 +00:00
|
|
|
Result AcknowledgeMitmSession(MitmProcessInfo *out_info, Handle *out_hnd, os::ProcessId process_id, ServiceName service);
|
2019-06-21 02:23:40 +01:00
|
|
|
|
|
|
|
/* Dmnt record extensions. */
|
|
|
|
Result GetServiceRecord(ServiceRecord *out, ServiceName service);
|
|
|
|
Result ListServiceRecords(ServiceRecord *out, u64 *out_count, u64 offset, u64 max_count);
|
|
|
|
|
|
|
|
/* Deferral extension (works around FS bug). */
|
|
|
|
Result EndInitialDefers();
|
|
|
|
|
2019-06-21 02:32:00 +01:00
|
|
|
}
|