1b1b8bc3fSopenharmony_ci<?xml version="1.0" encoding="UTF-8"?> 2b1b8bc3fSopenharmony_ci<!-- Copyright (c) 2021 Huawei Device Co., Ltd. 3b1b8bc3fSopenharmony_ci 4b1b8bc3fSopenharmony_ci Licensed under the Apache License, Version 2.0 (the "License"); 5b1b8bc3fSopenharmony_ci you may not use this file except in compliance with the License. 6b1b8bc3fSopenharmony_ci You may obtain a copy of the License at 7b1b8bc3fSopenharmony_ci 8b1b8bc3fSopenharmony_ci http://www.apache.org/licenses/LICENSE-2.0 9b1b8bc3fSopenharmony_ci 10b1b8bc3fSopenharmony_ci Unless required by applicable law or agreed to in writing, software 11b1b8bc3fSopenharmony_ci distributed under the License is distributed on an "AS IS" BASIS, 12b1b8bc3fSopenharmony_ci WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13b1b8bc3fSopenharmony_ci See the License for the specific language governing permissions and 14b1b8bc3fSopenharmony_ci limitations under the License. 15b1b8bc3fSopenharmony_ci 16b1b8bc3fSopenharmony_ci This is the configuration file template for OpenHarmony OSS Audit Tool, please copy it to your project root dir and modify it refer to OpenHarmony/tools_oat/README. 17b1b8bc3fSopenharmony_ci All configurations in this file will be merged to OAT-Default.xml, if you have any questions or concerns, please create issue in OpenHarmony/tools_oat and @jalenchen or chenyaxun. 18b1b8bc3fSopenharmony_ci 19b1b8bc3fSopenharmony_ci licensefile: 20b1b8bc3fSopenharmony_ci 1.If the project don't have "LICENSE" in root dir, please define all the license files in this project in , OAT will check license files according to this rule. 21b1b8bc3fSopenharmony_ci 22b1b8bc3fSopenharmony_ci policylist: 23b1b8bc3fSopenharmony_ci 1. policy: If the OAT-Default.xml policies do not meet your requirements, please add policies here. 24b1b8bc3fSopenharmony_ci 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is: 25b1b8bc3fSopenharmony_ci <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 26b1b8bc3fSopenharmony_ci 3. policyitem type: 27b1b8bc3fSopenharmony_ci "compatibility" is used to check license compatibility in the specified path; 28b1b8bc3fSopenharmony_ci "license" is used to check source license header in the specified path; 29b1b8bc3fSopenharmony_ci "copyright" is used to check source copyright header in the specified path; 30b1b8bc3fSopenharmony_ci "import" is used to check source dependency in the specified path, such as import ... ,include ... 31b1b8bc3fSopenharmony_ci "filetype" is used to check file type in the specified path, supported file types: archive, binary 32b1b8bc3fSopenharmony_ci "filename" is used to check whether the specified file exists in the specified path(projectroot means the root dir of the project), supported file names: LICENSE, README, README.OpenSource 33b1b8bc3fSopenharmony_ci 4. policyitem name: This field is used for define the license, copyright, "*" means match all, the "!" prefix means could not match this value. For example, "!GPL" means can not use GPL license. 34b1b8bc3fSopenharmony_ci 5. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem. 35b1b8bc3fSopenharmony_ci 6. policyitem rule and group: These two fields are used together to merge policy results. "may" policyitems in the same group means any one in this group passed, the result will be passed. 36b1b8bc3fSopenharmony_ci 7. policyitem filefilter: Used to bind filefilter which define filter rules. 37b1b8bc3fSopenharmony_ci 7. policyitem desc: Used to describe the reason of this policy item, committers will check this while merging the code. 38b1b8bc3fSopenharmony_ci 8. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path. 39b1b8bc3fSopenharmony_ci 40b1b8bc3fSopenharmony_ci Note:If the text contains special characters, please escape them according to the following rules: 41b1b8bc3fSopenharmony_ci " == " 42b1b8bc3fSopenharmony_ci & == & 43b1b8bc3fSopenharmony_ci ' == ' 44b1b8bc3fSopenharmony_ci < == < 45b1b8bc3fSopenharmony_ci > == > 46b1b8bc3fSopenharmony_ci--> 47b1b8bc3fSopenharmony_ci 48b1b8bc3fSopenharmony_ci<configuration> 49b1b8bc3fSopenharmony_ci <oatconfig> 50b1b8bc3fSopenharmony_ci <licensefile></licensefile> 51b1b8bc3fSopenharmony_ci <policylist> 52b1b8bc3fSopenharmony_ci <policy name="projectPolicy" desc=""> 53b1b8bc3fSopenharmony_ci <!--policyitem type="compatibility" name="GPL-2.0+" path=".*" desc="Process that runs independently, invoked by the X process."/--> 54b1b8bc3fSopenharmony_ci <!--policyitem type="license" name="LGPL" path=".*" desc="Dynamically linked by module X"/--> 55b1b8bc3fSopenharmony_ci <!--policyitem type="copyright" name="xxx" path=".*" rule="may" group="defaultGroup" filefilter="copyrightPolicyFilter" desc="Developed by X Company"/--> 56b1b8bc3fSopenharmony_ci 57b1b8bc3fSopenharmony_ci </policy> 58b1b8bc3fSopenharmony_ci </policylist> 59b1b8bc3fSopenharmony_ci 60b1b8bc3fSopenharmony_ci <filefilterlist> 61b1b8bc3fSopenharmony_ci <filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies"> 62b1b8bc3fSopenharmony_ci <filteritem type="filename" name="*.png" desc="Image files used in readme"/> 63b1b8bc3fSopenharmony_ci </filefilter> 64b1b8bc3fSopenharmony_ci <filefilter name="defaultFilter" desc="Filters not to check"> 65b1b8bc3fSopenharmony_ci <filteritem type="filepath" name="services/etc/init/initHosts" desc="Add host initialization data"/> 66b1b8bc3fSopenharmony_ci <filteritem type="filepath" name="services/etc/init/hosts" desc="Add host lnk"/> 67b1b8bc3fSopenharmony_ci </filefilter> 68b1b8bc3fSopenharmony_ci <filefilter name="defaultPolicyFilter" desc="Filters for compatibility, license header policies"> 69b1b8bc3fSopenharmony_ci <filteritem type="filepath" name="LICENSE" desc="license file"/> 70b1b8bc3fSopenharmony_ci <filteritem type="filepath" name="services/netmanagernative/bpf/src/netsys.c" desc="The netsys.c is dual licensed"/> 71b1b8bc3fSopenharmony_ci <filteritem type="filepath" name="services/netmanagernative/bpf/include/bpf_def.h" desc="The bpf_def.h is dual licensed"/> 72b1b8bc3fSopenharmony_ci </filefilter> 73b1b8bc3fSopenharmony_ci </filefilterlist> 74b1b8bc3fSopenharmony_ci </oatconfig> 75b1b8bc3fSopenharmony_ci</configuration> 76