-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stratosphere: Fix FS permissions for <4.0.0 KIPs
- Loading branch information
Showing
10 changed files
with
183 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright (c) 2018 Atmosphère-NX | ||
* | ||
* 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 <switch.h> | ||
#include <switch/arm/atomics.h> | ||
#include "smm_ams.h" | ||
|
||
static Service g_smManagerAmsSrv; | ||
static u64 g_smManagerAmsRefcnt; | ||
|
||
Result smManagerAmsInitialize(void) { | ||
atomicIncrement64(&g_smManagerAmsRefcnt); | ||
|
||
if (serviceIsActive(&g_smManagerAmsSrv)) | ||
return 0; | ||
|
||
return smGetService(&g_smManagerAmsSrv, "sm:m"); | ||
} | ||
|
||
void smManagerAmsExit(void) { | ||
if (atomicDecrement64(&g_smManagerAmsRefcnt) == 0) | ||
serviceClose(&g_smManagerAmsSrv); | ||
} | ||
|
||
Result smManagerAmsEndInitialDefers(void) { | ||
IpcCommand c; | ||
ipcInitialize(&c); | ||
|
||
struct { | ||
u64 magic; | ||
u64 cmd_id; | ||
} *raw; | ||
|
||
raw = serviceIpcPrepareHeader(&g_smManagerAmsSrv, &c, sizeof(*raw)); | ||
raw->magic = SFCI_MAGIC; | ||
raw->cmd_id = 65000; | ||
|
||
|
||
Result rc = serviceIpcDispatch(&g_smManagerAmsSrv); | ||
|
||
if (R_SUCCEEDED(rc)) { | ||
IpcParsedCommand r; | ||
struct { | ||
u64 magic; | ||
u64 result; | ||
} *resp; | ||
|
||
serviceIpcParse(&g_smManagerAmsSrv, &r, sizeof(*resp)); | ||
resp = r.Raw; | ||
|
||
rc = resp->result; | ||
} | ||
|
||
return rc; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* @file smm_ams.h | ||
* @brief Service manager (sm:m) IPC wrapper for Atmosphere extensions. | ||
* @author SciresM | ||
* @copyright libnx Authors | ||
*/ | ||
#pragma once | ||
#include <switch.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
Result smManagerAmsInitialize(void); | ||
void smManagerAmsExit(void); | ||
|
||
Result smManagerAmsEndInitialDefers(void); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters