aboutsummaryrefslogtreecommitdiff
path: root/host/commands/process_sandboxer/policies/logcat_receiver.cpp
blob: b761144eb7ee1f51f9577b89509b146fe11c7d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright (C) 2024 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "host/commands/process_sandboxer/policies.h"

#include <sys/prctl.h>

#include "sandboxed_api/sandbox2/policybuilder.h"
#include "sandboxed_api/sandbox2/util/bpf_helper.h"
#include "sandboxed_api/util/path.h"

using sapi::file::JoinPath;

namespace cuttlefish {

sandbox2::PolicyBuilder LogcatReceiverPolicy(const HostInfo& host) {
  auto exe = JoinPath(host.artifacts_path, "bin", "logcat_receiver");
  auto lib64 = JoinPath(host.artifacts_path, "lib64");
  return sandbox2::PolicyBuilder()
      .AddDirectory(lib64)
      .AddDirectory(host.log_dir, /* is_ro= */ false)
      .AddFile(host.cuttlefish_config_path)
      .AddLibrariesForBinary(exe, lib64)
      // For dynamic linking
      .AddPolicyOnSyscall(__NR_prctl,
                          {ARG_32(0), JEQ32(PR_CAPBSET_READ, ALLOW)})
      .AllowDynamicStartup()
      .AllowExit()
      .AllowGetPIDs()
      .AllowGetRandom()
      .AllowHandleSignals()
      .AllowMmap()
      .AllowOpen()
      .AllowRead()
      .AllowReadlink()
      .AllowRestartableSequences(sandbox2::PolicyBuilder::kAllowSlowFences)
      .AllowSafeFcntl()
      .AllowSyscall(__NR_tgkill)
      .AllowWrite();
}

}  // namespace cuttlefish