blob: 6515ea4c46b466ec9cef7562e124a75784fec05d [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;
Ashish Sharma6337b882012-04-10 19:47:09 -070035 NetlinkHandler *mIfaceIdleTimerHandler;
Mike J. Chen564df4e2011-06-23 15:07:35 -070036 int mUeventSock;
37 int mRouteSock;
JP Abgralle0ebc462011-07-21 17:21:49 -070038 int mQuotaSock;
Ashish Sharma6337b882012-04-10 19:47:09 -070039 int mIfaceIdleTimerSock;
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
JP Abgralle0ebc462011-07-21 17:21:49 -070052 /* This is the nflog group arg that the xt_quota2 neftiler will use. */
53 static const int NFLOG_QUOTA_GROUP;
54
Ashish Sharma6337b882012-04-10 19:47:09 -070055 /* This is the group that the xt_IDLETIMER netfilter will use. */
56 static const int IDLETIMER_GROUP;
57
San Mehatd1830422010-01-15 08:02:39 -080058private:
59 NetlinkManager();
JP Abgralle0ebc462011-07-21 17:21:49 -070060 NetlinkHandler* setupSocket(int *sock, int netlinkFamily, int groups,
Mike J. Chen564df4e2011-06-23 15:07:35 -070061 int format);
San Mehatd1830422010-01-15 08:02:39 -080062};
63#endif