blob: be22afd2070e027f72e283d38cc9d35a9706cd83 [file] [log] [blame]
David Anderson491e4da2020-12-08 00:21:20 -08001/*
2 * Copyright (C) 2020 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
19#include <sys/types.h>
20
21#include <optional>
22#include <string>
23#include <vector>
24
25#include <libsnapshot/snapshot.h>
26
27#include "block_dev_initializer.h"
28
29namespace android {
30namespace init {
31
Akilesh Kailash3b874452021-10-03 09:41:13 +000032enum class SnapshotDriver {
33 DM_SNAPSHOT,
34 DM_USER,
35};
36
David Anderson491e4da2020-12-08 00:21:20 -080037// Fork and exec a new copy of snapuserd.
Akilesh Kailash3b874452021-10-03 09:41:13 +000038void LaunchFirstStageSnapuserd(SnapshotDriver driver);
David Anderson491e4da2020-12-08 00:21:20 -080039
40class SnapuserdSelinuxHelper final {
41 using SnapshotManager = android::snapshot::SnapshotManager;
42
43 public:
44 SnapuserdSelinuxHelper(std::unique_ptr<SnapshotManager>&& sm, pid_t old_pid);
45
46 void StartTransition();
47 void FinishTransition();
48
49 // Return a helper for facilitating the selinux transition of snapuserd.
50 // If snapuserd is not in use, null is returned. StartTransition() should
51 // be called after reading policy. FinishTransition() should be called
52 // after loading policy. In between, no reads of /system or other dynamic
53 // partitions are possible.
54 static std::unique_ptr<SnapuserdSelinuxHelper> CreateIfNeeded();
55
56 private:
57 void RelaunchFirstStageSnapuserd();
58 void ExecSnapuserd();
59
60 std::unique_ptr<SnapshotManager> sm_;
61 BlockDevInitializer block_dev_init_;
62 pid_t old_pid_;
63 std::vector<std::string> argv_;
64};
65
66// Remove /dev/socket/snapuserd. This ensures that (1) the existing snapuserd
67// will receive no new requests, and (2) the next copy we transition to can
68// own the socket.
69void CleanupSnapuserdSocket();
70
71// Kill an instance of snapuserd given a pid.
72void KillFirstStageSnapuserd(pid_t pid);
73
74// Save an open fd to /system/bin (in the ramdisk) into an environment. This is
75// used to later execveat() snapuserd.
76void SaveRamdiskPathToSnapuserd();
77
78// Returns true if first-stage snapuserd is running.
79bool IsFirstStageSnapuserdRunning();
80
81// Return the pid of the first-stage instances of snapuserd, if it was started.
82std::optional<pid_t> GetSnapuserdFirstStagePid();
83
David Anderson0e5ad5a2021-07-21 21:53:28 -070084// Return snapuserd info strings that were set during first-stage init.
85std::vector<std::string> GetSnapuserdFirstStageInfo();
86
David Anderson491e4da2020-12-08 00:21:20 -080087// Save an open fd to /system/bin (in the ramdisk) into an environment. This is
88// used to later execveat() snapuserd.
89void SaveRamdiskPathToSnapuserd();
90
91// Returns true if first-stage snapuserd is running.
92bool IsFirstStageSnapuserdRunning();
93
94} // namespace init
95} // namespace android