2020-02-08 19:53:27 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-02-08 19:53:27 +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/>.
|
|
|
|
*/
|
|
|
|
#include <mesosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::kern::svc {
|
|
|
|
|
|
|
|
/* ============================= Common ============================= */
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
ALWAYS_INLINE Result SendSyncRequestLight(ams::svc::Handle session_handle, u32 *args) {
|
|
|
|
/* Get the light client session from its handle. */
|
|
|
|
KScopedAutoObject session = GetCurrentProcess().GetHandleTable().GetObject<KLightClientSession>(session_handle);
|
|
|
|
R_UNLESS(session.IsNotNull(), svc::ResultInvalidHandle());
|
2020-02-08 19:53:27 +00:00
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
/* Send the request. */
|
|
|
|
R_TRY(session->SendSyncRequest(args));
|
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
R_SUCCEED();
|
2020-07-29 10:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE Result ReplyAndReceiveLight(ams::svc::Handle session_handle, u32 *args) {
|
|
|
|
/* Get the light server session from its handle. */
|
|
|
|
KScopedAutoObject session = GetCurrentProcess().GetHandleTable().GetObject<KLightServerSession>(session_handle);
|
|
|
|
R_UNLESS(session.IsNotNull(), svc::ResultInvalidHandle());
|
|
|
|
|
|
|
|
/* Handle the request. */
|
|
|
|
R_TRY(session->ReplyAndReceive(args));
|
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
R_SUCCEED();
|
2020-07-29 10:57:40 +00:00
|
|
|
}
|
2020-02-08 19:53:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================= 64 ABI ============================= */
|
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
Result SendSyncRequestLight64(ams::svc::Handle session_handle, u32 *args) {
|
2022-02-14 22:45:32 +00:00
|
|
|
R_RETURN(SendSyncRequestLight(session_handle, args));
|
2020-02-08 19:53:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
Result ReplyAndReceiveLight64(ams::svc::Handle session_handle, u32 *args) {
|
2022-02-14 22:45:32 +00:00
|
|
|
R_RETURN(ReplyAndReceiveLight(session_handle, args));
|
2020-02-08 19:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================= 64From32 ABI ============================= */
|
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
Result SendSyncRequestLight64From32(ams::svc::Handle session_handle, u32 *args) {
|
2022-02-14 22:45:32 +00:00
|
|
|
R_RETURN(SendSyncRequestLight(session_handle, args));
|
2020-02-08 19:53:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 10:57:40 +00:00
|
|
|
Result ReplyAndReceiveLight64From32(ams::svc::Handle session_handle, u32 *args) {
|
2022-02-14 22:45:32 +00:00
|
|
|
R_RETURN(ReplyAndReceiveLight(session_handle, args));
|
2020-02-08 19:53:27 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 19:56:13 +00:00
|
|
|
}
|