blob: 5e3dab2412900c464b6f153e35bcbade100fc999 [file] [log] [blame]
Jiyong Park68660412019-01-16 23:00:59 +09001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
Jooyung Han4f23d5a2020-06-09 13:44:17 +090019#include <android-base/result.h>
20
Jiyong Park68660412019-01-16 23:00:59 +090021namespace android {
22namespace init {
23
Jooyung Han4f23d5a2020-06-09 13:44:17 +090024enum MountNamespace { NS_BOOTSTRAP, NS_DEFAULT };
25
Jiyong Park68660412019-01-16 23:00:59 +090026bool SetupMountNamespaces();
Jooyung Han4f23d5a2020-06-09 13:44:17 +090027base::Result<void> SwitchToMountNamespaceIfNeeded(MountNamespace target_mount_namespace);
Jiyong Park68660412019-01-16 23:00:59 +090028
Kiyoung Kim0cbee0d2021-03-02 16:45:27 +090029base::Result<MountNamespace> GetCurrentMountNamespace();
30
Jiyong Park68660412019-01-16 23:00:59 +090031} // namespace init
32} // namespace android