blob: d5d18b28c0e7795e77b7189ad4b4f89a6f181322 [file] [log] [blame]
San Mehatd1830422010-01-15 08:02:39 -08001/*
2 * Copyright (C) 2008 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 _NETLINKMANAGER_H
18#define _NETLINKMANAGER_H
19
20#include <sysutils/SocketListener.h>
21#include <sysutils/NetlinkListener.h>
22
Lorenzo Colitti7035f222017-02-13 18:29:00 +090023namespace android {
24namespace net {
JP Abgralle0ebc462011-07-21 17:21:49 -070025
San Mehatd1830422010-01-15 08:02:39 -080026class NetlinkHandler;
27
28class NetlinkManager {
29private:
30 static NetlinkManager *sInstance;
31
32private:
33 SocketListener *mBroadcaster;
Mike J. Chen564df4e2011-06-23 15:07:35 -070034 NetlinkHandler *mUeventHandler;
35 NetlinkHandler *mRouteHandler;
JP Abgralle0ebc462011-07-21 17:21:49 -070036 NetlinkHandler *mQuotaHandler;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070037 NetlinkHandler *mStrictHandler;
Mike J. Chen564df4e2011-06-23 15:07:35 -070038 int mUeventSock;
39 int mRouteSock;
JP Abgralle0ebc462011-07-21 17:21:49 -070040 int mQuotaSock;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070041 int mStrictSock;
San Mehatd1830422010-01-15 08:02:39 -080042
43public:
44 virtual ~NetlinkManager();
45
46 int start();
47 int stop();
48
49 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
50 SocketListener *getBroadcaster() { return mBroadcaster; }
51
52 static NetlinkManager *Instance();
53
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070054 /* Group used by xt_quota2 */
JP Abgralle0ebc462011-07-21 17:21:49 -070055 static const int NFLOG_QUOTA_GROUP;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070056 /* Group used by StrictController rules */
57 static const int NETFILTER_STRICT_GROUP;
Ashish Sharma6337b882012-04-10 19:47:09 -070058
San Mehatd1830422010-01-15 08:02:39 -080059private:
60 NetlinkManager();
JP Abgralle0ebc462011-07-21 17:21:49 -070061 NetlinkHandler* setupSocket(int *sock, int netlinkFamily, int groups,
Jeff Sharkey9088f102015-01-23 12:09:49 -070062 int format, bool configNflog);
San Mehatd1830422010-01-15 08:02:39 -080063};
Lorenzo Colitti7035f222017-02-13 18:29:00 +090064
65} // namespace net
66} // namespace android
67
San Mehatd1830422010-01-15 08:02:39 -080068#endif