BUILD.gn 4.5 KB
Newer Older
X
<feat>  
xiacong 已提交
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
# Copyright (c) 2022 Huawei Device Co., Ltd.
# 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.

import("//base/startup/init/begetd.gni")
import(
    "//base/startup/init/services/modules/seccomp/scripts/seccomp_policy_fixer.gni")
import("//build/config/clang/clang.gni")
import("//build/ohos.gni")
import("//build/ohos/kernel/kernel.gni")

INIT_PART = "init"

action("syscall_to_nr_arm") {
  script = "${clang_base_path}/bin/clang"
  output_dir = target_gen_dir + "/libsyscall_to_nr_arm"
  args = [
    "-I",
    rebase_path(
        "//kernel/linux/patches/${linux_kernel_version}/prebuilts/usr/include/asm-arm"),
    "-I",
    rebase_path(
        "//kernel/linux/patches/${linux_kernel_version}/prebuilts/usr/include"),
    "-dD",
    "-E",
    "-Wall",
    "-nostdinc",
    "-o",
    rebase_path(output_dir),
    rebase_path("gen_syscall_name_nrs.c"),
  ]

  outputs = [ output_dir ]
}

action("syscall_to_nr_arm64") {
  script = "${clang_base_path}/bin/clang"
  output_dir = target_gen_dir + "/libsyscall_to_nr_arm64"
  args = [
    "-I",
    rebase_path(
        "//kernel/linux/patches/${linux_kernel_version}/prebuilts/usr/include/asm-arm64"),
    "-I",
    rebase_path(
        "//kernel/linux/patches/${linux_kernel_version}/prebuilts/usr/include"),
    "-dD",
    "-E",
    "-Wall",
    "-nostdinc",
    "-o",
    rebase_path(output_dir),
    rebase_path("gen_syscall_name_nrs.c"),
  ]

  outputs = [ output_dir ]
}

ohos_prebuilt_seccomp("system_filter") {
  sources = []
  if (target_cpu == "arm") {
    sources += [ "seccomp_policy/system_arm.seccomp.policy" ]
C
x86  
cheng_jinsong 已提交
71
  } else if (target_cpu == "arm64" || target_cpu == "x86_64") {
X
<feat>  
xiacong 已提交
72 73 74 75 76 77 78 79 80 81 82 83
    sources += [
      # 64-bit machine also need check use 32-bit syscall
      "seccomp_policy/system_arm.seccomp.policy",
      "seccomp_policy/system_arm64.seccomp.policy",
    ]
  }

  filtername = "g_systemSeccompFilter"
  part_name = INIT_PART
  subsystem_name = "startup"

  install_enable = true
X
<fix>  
xiacong 已提交
84
  install_images = [ "system" ]
X
<feat>  
xiacong 已提交
85 86 87 88 89 90
}

ohos_prebuilt_seccomp("appspawn_filter") {
  sources = []
  if (target_cpu == "arm") {
    sources += [ "seccomp_policy/spawn_arm.seccomp.policy" ]
C
x86  
cheng_jinsong 已提交
91
  } else if (target_cpu == "arm64" || target_cpu == "x86_64") {
X
<feat>  
xiacong 已提交
92 93 94 95 96 97 98 99 100 101 102 103
    sources += [
      # 64-bit machine also need check use 32-bit syscall
      "seccomp_policy/spawn_arm.seccomp.policy",
      "seccomp_policy/spawn_arm64.seccomp.policy",
    ]
  }

  filtername = "g_appspawnSeccompFilter"
  part_name = INIT_PART
  subsystem_name = "startup"

  install_enable = true
X
<feat>  
xiacong 已提交
104
  install_images = [ "system" ]
X
<feat>  
xiacong 已提交
105 106
}

107 108 109
ohos_prebuilt_seccomp("nwebspawn_filter") {
  if (target_cpu == "arm") {
    sources = [ "seccomp_policy/renderer_arm.seccomp.policy" ]
C
x86  
cheng_jinsong 已提交
110
  } else if (target_cpu == "arm64" || target_cpu == "x86_64") {
111 112 113 114 115 116 117 118
    sources = [ "seccomp_policy/renderer_arm64.seccomp.policy" ]
  }

  filtername = "g_nwebspawnSeccompFilter"
  part_name = INIT_PART
  subsystem_name = "startup"

  install_enable = true
X
<feat>  
xiacong 已提交
119 120 121 122 123 124 125
  install_images = [ "system" ]
}

ohos_prebuilt_seccomp("app_filter") {
  sources = []
  if (target_cpu == "arm") {
    sources += [ "seccomp_policy/app_arm.seccomp.policy" ]
C
x86  
cheng_jinsong 已提交
126
  } else if (target_cpu == "arm64" || target_cpu == "x86_64") {
X
<feat>  
xiacong 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139
    sources += [
      # 64-bit machine also need check use 32-bit syscall
      "seccomp_policy/app_arm.seccomp.policy",
      "seccomp_policy/app_arm64.seccomp.policy",
    ]
  }

  filtername = "g_appSeccompFilter"
  part_name = INIT_PART
  subsystem_name = "startup"

  install_enable = true
  install_images = [ "system" ]
140 141
}

X
<fix>  
xiacong 已提交
142
config("libseccomp_static_config") {
X
<feat>  
xiacong 已提交
143
  include_dirs = [
X
<feat>  
xiacong 已提交
144
    "//base/startup/init/services/modules",
X
<feat>  
xiacong 已提交
145
    "//base/startup/init/interfaces/innerkits/seccomp/include",
X
<fix>  
xiacong 已提交
146
    "//third_party/bounds_checking_function/include",
X
<feat>  
xiacong 已提交
147
  ]
X
<fix>  
xiacong 已提交
148
}
X
<feat>  
xiacong 已提交
149

X
<fix>  
xiacong 已提交
150 151 152 153
ohos_source_set("libseccomp_static") {
  sources = [
    "seccomp_policy.c",
    "seccomp_policy_static.c",
X
<feat>  
xiacong 已提交
154
  ]
X
<fix>  
xiacong 已提交
155 156 157
  public_configs = [
    ":libseccomp_static_config",
    "//base/startup/init/interfaces/innerkits/init_module_engine:init_module_engine_exported_config",
X
<feat>  
xiacong 已提交
158 159 160
  ]
}

X
<fix>  
xiacong 已提交
161 162 163 164 165 166
group("seccomp_filter") {
  deps = [
    ":app_filter",
    ":appspawn_filter",
    ":nwebspawn_filter",
    ":system_filter",
X
<feat>  
xiacong 已提交
167 168
  ]
}