You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.9 KiB
145 lines
4.9 KiB
/* |
|
* Copyright (C) 2011 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. |
|
*/ |
|
#ifndef _BANDWIDTH_CONTROLLER_H |
|
#define _BANDWIDTH_CONTROLLER_H |
|
|
|
#include <map> |
|
#include <set> |
|
#include <string> |
|
#include <utility> |
|
#include <vector> |
|
#include <mutex> |
|
|
|
#include "NetdConstants.h" |
|
|
|
class BandwidthController { |
|
public: |
|
std::mutex lock; |
|
|
|
BandwidthController(); |
|
|
|
int setupIptablesHooks(); |
|
void setBpfEnabled(bool isEnabled); |
|
|
|
int enableBandwidthControl(); |
|
int disableBandwidthControl(); |
|
int enableDataSaver(bool enable); |
|
|
|
int setInterfaceSharedQuota(const std::string& iface, int64_t bytes); |
|
int getInterfaceSharedQuota(int64_t *bytes); |
|
int removeInterfaceSharedQuota(const std::string& iface); |
|
|
|
int setInterfaceQuota(const std::string& iface, int64_t bytes); |
|
int getInterfaceQuota(const std::string& iface, int64_t* bytes); |
|
int removeInterfaceQuota(const std::string& iface); |
|
|
|
// TODO: Remove after removing these commands in CommandListener |
|
int addNaughtyApps(int numUids, const char* const appUids[]); |
|
int removeNaughtyApps(int numUids, const char* const appUids[]); |
|
int addNiceApps(int numUids, const char* const appUids[]); |
|
int removeNiceApps(int numUids, const char* const appUids[]); |
|
|
|
int addNaughtyApps(const std::vector<std::string>& appStrUid); |
|
int removeNaughtyApps(const std::vector<std::string>& appStrUid); |
|
int addNiceApps(const std::vector<std::string>& appStrUid); |
|
int removeNiceApps(const std::vector<std::string>& appStrUid); |
|
|
|
int setGlobalAlert(int64_t bytes); |
|
int removeGlobalAlert(); |
|
int setGlobalAlertInForwardChain(); |
|
int removeGlobalAlertInForwardChain(); |
|
|
|
int setSharedAlert(int64_t bytes); |
|
int removeSharedAlert(); |
|
|
|
int setInterfaceAlert(const std::string& iface, int64_t bytes); |
|
int removeInterfaceAlert(const std::string& iface); |
|
|
|
static const char LOCAL_INPUT[]; |
|
static const char LOCAL_FORWARD[]; |
|
static const char LOCAL_OUTPUT[]; |
|
static const char LOCAL_RAW_PREROUTING[]; |
|
static const char LOCAL_MANGLE_POSTROUTING[]; |
|
static const char LOCAL_GLOBAL_ALERT[]; |
|
|
|
enum IptJumpOp { IptJumpReject, IptJumpReturn, IptJumpNoAdd }; |
|
enum IptOp { IptOpInsert, IptOpDelete }; |
|
|
|
private: |
|
struct QuotaInfo { |
|
int64_t quota; |
|
int64_t alert; |
|
}; |
|
|
|
enum IptIpVer { IptIpV4, IptIpV6 }; |
|
enum IptFullOp { IptFullOpInsert, IptFullOpDelete, IptFullOpAppend }; |
|
enum QuotaType { QuotaUnique, QuotaShared }; |
|
enum RunCmdErrHandling { RunCmdFailureBad, RunCmdFailureOk }; |
|
#if LOG_NDEBUG |
|
enum IptFailureLog { IptFailShow, IptFailHide }; |
|
#else |
|
enum IptFailureLog { IptFailShow, IptFailHide = IptFailShow }; |
|
#endif |
|
|
|
std::string makeDataSaverCommand(IptablesTarget target, bool enable); |
|
|
|
int manipulateSpecialApps(const std::vector<std::string>& appStrUids, const std::string& chain, |
|
IptJumpOp jumpHandling, IptOp appOp); |
|
|
|
int runIptablesAlertCmd(IptOp op, const std::string& alertName, int64_t bytes); |
|
int runIptablesAlertFwdCmd(IptOp op, const std::string& alertName, int64_t bytes); |
|
|
|
int updateQuota(const std::string& alertName, int64_t bytes); |
|
|
|
int setCostlyAlert(const std::string& costName, int64_t bytes, int64_t* alertBytes); |
|
int removeCostlyAlert(const std::string& costName, int64_t* alertBytes); |
|
|
|
/* |
|
* Attempt to find the bw_costly_* tables that need flushing, |
|
* and flush them. |
|
* If doClean then remove the tables also. |
|
* Deals with both ip4 and ip6 tables. |
|
*/ |
|
void flushExistingCostlyTables(bool doClean); |
|
static void parseAndFlushCostlyTables(const std::string& ruleList, bool doRemove); |
|
|
|
/* |
|
* Attempt to flush our tables. |
|
* If doClean then remove them also. |
|
* Deals with both ip4 and ip6 tables. |
|
*/ |
|
void flushCleanTables(bool doClean); |
|
|
|
// For testing. |
|
friend class BandwidthControllerTest; |
|
static int (*execFunction)(int, char **, int *, bool, bool); |
|
static FILE *(*popenFunction)(const char *, const char *); |
|
static int (*iptablesRestoreFunction)(IptablesTarget, const std::string&, std::string *); |
|
|
|
static const char *opToString(IptOp op); |
|
static const char *jumpToString(IptJumpOp jumpHandling); |
|
|
|
bool mBpfSupported = false; |
|
|
|
int64_t mSharedQuotaBytes = 0; |
|
int64_t mSharedAlertBytes = 0; |
|
int64_t mGlobalAlertBytes = 0; |
|
|
|
std::map<std::string, QuotaInfo> mQuotaIfaces; |
|
std::set<std::string> mSharedQuotaIfaces; |
|
}; |
|
|
|
#endif
|
|
|