blob: e3f533ab7fe57b8d4e590f8cc213aa0a4e197e1e [file] [log] [blame]
Robert Greenwaltc4621772012-01-31 12:46:45 -08001/*
2 * Copyright (C) 2012 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#ifndef _NETD_CONSTANTS_H
18#define _NETD_CONSTANTS_H
19
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070020#include <string>
21#include <list>
22#include <stdarg.h>
Lorenzo Colitti699aa992016-04-15 10:22:37 +090023
24#include <chrono>
25
Felipe Leme5ebbbd82016-03-07 09:25:50 -080026#include <private/android_filesystem_config.h>
Robert Greenwaltc4621772012-01-31 12:46:45 -080027
Lorenzo Colittie4d626e2016-02-02 17:19:04 +090028#include "utils/RWLock.h"
29
Chad Brubaker2a390122014-02-19 17:51:05 -080030const int PROTECT_MARK = 0x1;
Felipe Leme5ebbbd82016-03-07 09:25:50 -080031const int MAX_SYSTEM_UID = AID_APP - 1;
Chad Brubaker2a390122014-02-19 17:51:05 -080032
Robert Greenwaltc4621772012-01-31 12:46:45 -080033extern const char * const IPTABLES_PATH;
JP Abgrall0031cea2012-04-17 16:38:23 -070034extern const char * const IP6TABLES_PATH;
Robert Greenwaltc4621772012-01-31 12:46:45 -080035extern const char * const IP_PATH;
36extern const char * const TC_PATH;
37extern const char * const OEM_SCRIPT_PATH;
38extern const char * const ADD;
39extern const char * const DEL;
40
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070041enum IptablesTarget { V4, V6, V4V6 };
42
43int execIptables(IptablesTarget target, ...);
44int execIptablesSilently(IptablesTarget target, ...);
Lorenzo Colitti89faa342016-02-26 11:38:47 +090045int execIptablesRestore(IptablesTarget target, const std::string& commands);
JP Abgrall69261cb2014-06-19 18:35:24 -070046bool isIfaceName(const char *name);
Lorenzo Colittiba25df92014-06-18 00:22:17 +090047int parsePrefix(const char *prefix, uint8_t *family, void *address, int size, uint8_t *prefixlen);
Jeff Sharkey8e188ed2012-07-12 18:32:03 -070048
Rom Lemarchand001f0a42013-01-31 12:41:03 -080049#define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
50
Lorenzo Colittia10ac322014-04-11 18:26:17 +090051#define __INT_STRLEN(i) sizeof(#i)
52#define _INT_STRLEN(i) __INT_STRLEN(i)
Lorenzo Colitti0a3eb852016-02-23 16:59:21 +090053#define INT32_STRLEN _INT_STRLEN(INT32_MIN)
Lorenzo Colittia10ac322014-04-11 18:26:17 +090054#define UINT32_STRLEN _INT_STRLEN(UINT32_MAX)
55#define UINT32_HEX_STRLEN sizeof("0x12345678")
56
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070057#define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
58
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070059const uid_t INVALID_UID = static_cast<uid_t>(-1);
60
Lorenzo Colitti699aa992016-04-15 10:22:37 +090061class Stopwatch {
62public:
63 Stopwatch() : mStart(std::chrono::steady_clock::now()) {}
64 virtual ~Stopwatch() {};
65
66 float timeTaken() const {
67 using ms = std::chrono::duration<float, std::ratio<1, 1000>>;
68 return (std::chrono::duration_cast<ms>(
69 std::chrono::steady_clock::now() - mStart)).count();
70 }
71
72private:
73 std::chrono::time_point<std::chrono::steady_clock> mStart;
74};
75
Lorenzo Colittie4d626e2016-02-02 17:19:04 +090076namespace android {
77namespace net {
78
79/**
80 * This lock exists to make NetdNativeService RPCs (which come in on multiple Binder threads)
81 * coexist with the commands in CommandListener.cpp. These are presumed not thread-safe because
82 * CommandListener has only one user (NetworkManagementService), which is connected through a
83 * FrameworkListener that passes in commands one at a time.
84 */
85extern android::RWLock gBigNetdLock;
86
87} // namespace net
88} // namespace android
89
90#endif // _NETD_CONSTANTS_H