blob: 2427aa906cc6cce5e0a26f4fa2f1273c281f719d [file] [log] [blame]
Wayne Maa9716ff2022-01-12 10:37:04 +08001/*
2 * Copyright (C) 2022 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// TODO: deduplicate with the constants in NetdConstants.h.
19#include <aidl/android/net/INetd.h>
20
21using aidl::android::net::INetd;
22
23enum FirewallRule { ALLOW = INetd::FIREWALL_RULE_ALLOW, DENY = INetd::FIREWALL_RULE_DENY };
24
25// ALLOWLIST means the firewall denies all by default, uids must be explicitly ALLOWed
26// DENYLIST means the firewall allows all by default, uids must be explicitly DENYed
27
28enum FirewallType { ALLOWLIST = INetd::FIREWALL_ALLOWLIST, DENYLIST = INetd::FIREWALL_DENYLIST };
29
Robert Horvathd945bf02022-01-27 19:55:16 +010030// LINT.IfChange(firewall_chain)
Wayne Maa9716ff2022-01-12 10:37:04 +080031enum ChildChain {
Robert Horvathd945bf02022-01-27 19:55:16 +010032 NONE = 0,
33 DOZABLE = 1,
34 STANDBY = 2,
35 POWERSAVE = 3,
36 RESTRICTED = 4,
37 LOW_POWER_STANDBY = 5,
Motomu Utsumi966ff7f2022-05-11 05:56:26 +000038 LOCKDOWN = 6,
Motomu Utsumi9cd47262022-06-01 13:57:27 +000039 OEM_DENY_1 = 7,
40 OEM_DENY_2 = 8,
Motomu Utsumi608015f2022-06-06 07:44:05 +000041 OEM_DENY_3 = 9,
Wayne Maa9716ff2022-01-12 10:37:04 +080042 INVALID_CHAIN
43};
Robert Horvathd945bf02022-01-27 19:55:16 +010044// LINT.ThenChange(packages/modules/Connectivity/framework/src/android/net/ConnectivityManager.java)