blob: e86e8daa18fbec154e769448371c00251f9ef7ff [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
32// Fork and exec a new copy of snapuserd.
Akilesh Kailashec799182024-03-28 09:51:52 -070033void LaunchFirstStageSnapuserd();
David Anderson491e4da2020-12-08 00:21:20 -080034
35class SnapuserdSelinuxHelper final {
36 using SnapshotManager = android::snapshot::SnapshotManager;
37
38 public:
39 SnapuserdSelinuxHelper(std::unique_ptr<SnapshotManager>&& sm, pid_t old_pid);
40
41 void StartTransition();
42 void FinishTransition();
43
44 // Return a helper for facilitating the selinux transition of snapuserd.
45 // If snapuserd is not in use, null is returned. StartTransition() should
46 // be called after reading policy. FinishTransition() should be called
47 // after loading policy. In between, no reads of /system or other dynamic
48 // partitions are possible.
49 static std::unique_ptr<SnapuserdSelinuxHelper> CreateIfNeeded();
50
51 private:
52 void RelaunchFirstStageSnapuserd();
53 void ExecSnapuserd();
Akilesh Kailashfd5562b2022-01-25 07:05:31 +000054 bool TestSnapuserdIsReady();
David Anderson491e4da2020-12-08 00:21:20 -080055
56 std::unique_ptr<SnapshotManager> sm_;
57 BlockDevInitializer block_dev_init_;
58 pid_t old_pid_;
59 std::vector<std::string> argv_;
60};
61
62// Remove /dev/socket/snapuserd. This ensures that (1) the existing snapuserd
63// will receive no new requests, and (2) the next copy we transition to can
64// own the socket.
65void CleanupSnapuserdSocket();
66
67// Kill an instance of snapuserd given a pid.
68void KillFirstStageSnapuserd(pid_t pid);
69
70// Save an open fd to /system/bin (in the ramdisk) into an environment. This is
71// used to later execveat() snapuserd.
72void SaveRamdiskPathToSnapuserd();
73
74// Returns true if first-stage snapuserd is running.
75bool IsFirstStageSnapuserdRunning();
76
77// Return the pid of the first-stage instances of snapuserd, if it was started.
78std::optional<pid_t> GetSnapuserdFirstStagePid();
79
David Anderson0e5ad5a2021-07-21 21:53:28 -070080// Return snapuserd info strings that were set during first-stage init.
81std::vector<std::string> GetSnapuserdFirstStageInfo();
82
David Anderson491e4da2020-12-08 00:21:20 -080083// Save an open fd to /system/bin (in the ramdisk) into an environment. This is
84// used to later execveat() snapuserd.
85void SaveRamdiskPathToSnapuserd();
86
87// Returns true if first-stage snapuserd is running.
88bool IsFirstStageSnapuserdRunning();
89
90} // namespace init
91} // namespace android