blob: a5cb0b9df12b7850460b0315e6e9a70b4a3072f3 [file] [log] [blame]
Ken Chenc52cbe02022-07-29 03:30:25 +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
18#pragma once
19
20#include <android-base/thread_annotations.h>
Maciej Żenczykowski04fb3862024-06-15 00:14:16 +000021#define BPF_MAP_LOCKLESS_FOR_TEST
Ken Chenc52cbe02022-07-29 03:30:25 +080022#include <bpf/BpfMap.h>
Maciej Żenczykowski513474c2022-12-08 16:20:43 +000023#include "netd.h"
Ken Chenc52cbe02022-07-29 03:30:25 +080024
25using android::base::Result;
26using android::bpf::BpfMap;
27
28class Firewall {
29 public:
30 Firewall() EXCLUDES(mMutex);
31 static Firewall* getInstance();
32 Result<void> toggleStandbyMatch(bool enable) EXCLUDES(mMutex);
33 Result<void> addRule(uint32_t uid, UidOwnerMatchType match, uint32_t iif = 0) EXCLUDES(mMutex);
34 Result<void> removeRule(uint32_t uid, UidOwnerMatchType match) EXCLUDES(mMutex);
35 Result<void> addUidInterfaceRules(const std::string& ifName, const std::vector<int32_t>& uids);
36 Result<void> removeUidInterfaceRules(const std::vector<int32_t>& uids);
Ken Chen5b144a12023-10-26 14:00:23 +080037 Result<bool> getDataSaverSetting();
38 Result<void> setDataSaver(bool enabled);
Ken Chenc52cbe02022-07-29 03:30:25 +080039 private:
40 BpfMap<uint32_t, uint32_t> mConfigurationMap GUARDED_BY(mMutex);
41 BpfMap<uint32_t, UidOwnerValue> mUidOwnerMap GUARDED_BY(mMutex);
Ken Chen5b144a12023-10-26 14:00:23 +080042 BpfMap<uint32_t, bool> mDataSaverEnabledMap GUARDED_BY(mMutex);
Ken Chenc52cbe02022-07-29 03:30:25 +080043 std::mutex mMutex;
44};