blob: 40a57220c5f8889745a8193625c4274142596b9e [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
JP Abgralle0ebc462011-07-21 17:21:49 -070023
San Mehatd1830422010-01-15 08:02:39 -080024class NetlinkHandler;
25
26class NetlinkManager {
27private:
28 static NetlinkManager *sInstance;
29
30private:
31 SocketListener *mBroadcaster;
Mike J. Chen564df4e2011-06-23 15:07:35 -070032 NetlinkHandler *mUeventHandler;
33 NetlinkHandler *mRouteHandler;
JP Abgralle0ebc462011-07-21 17:21:49 -070034 NetlinkHandler *mQuotaHandler;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070035 NetlinkHandler *mStrictHandler;
Mike J. Chen564df4e2011-06-23 15:07:35 -070036 int mUeventSock;
37 int mRouteSock;
JP Abgralle0ebc462011-07-21 17:21:49 -070038 int mQuotaSock;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070039 int mStrictSock;
San Mehatd1830422010-01-15 08:02:39 -080040
41public:
42 virtual ~NetlinkManager();
43
44 int start();
45 int stop();
46
47 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
48 SocketListener *getBroadcaster() { return mBroadcaster; }
49
50 static NetlinkManager *Instance();
51
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070052 /* Group used by xt_quota2 */
JP Abgralle0ebc462011-07-21 17:21:49 -070053 static const int NFLOG_QUOTA_GROUP;
Jeff Sharkeyfbe497f2014-10-28 16:50:07 -070054 /* Group used by StrictController rules */
55 static const int NETFILTER_STRICT_GROUP;
Ashish Sharma6337b882012-04-10 19:47:09 -070056
San Mehatd1830422010-01-15 08:02:39 -080057private:
58 NetlinkManager();
JP Abgralle0ebc462011-07-21 17:21:49 -070059 NetlinkHandler* setupSocket(int *sock, int netlinkFamily, int groups,
Jeff Sharkey9088f102015-01-23 12:09:49 -070060 int format, bool configNflog);
San Mehatd1830422010-01-15 08:02:39 -080061};
62#endif