blob: f9fc11b2baa4a3fab408765c5ef5fc04ed819484 [file] [log] [blame]
San Mehat168415b2009-05-06 11:14:21 -07001/*
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#ifndef _NETLINKEVENT_H
17#define _NETLINKEVENT_H
18
Mike J. Chen17260b12011-06-23 15:00:30 -070019#include <sysutils/NetlinkListener.h>
20
San Mehat168415b2009-05-06 11:14:21 -070021#define NL_PARAMS_MAX 32
22
23class NetlinkEvent {
Jeff Sharkeye4f39402015-03-13 13:27:33 -070024public:
25 enum class Action {
26 kUnknown = 0,
27 kAdd = 1,
28 kRemove = 2,
29 kChange = 3,
30 kLinkUp = 4,
31 kLinkDown = 5,
32 kAddressUpdated = 6,
33 kAddressRemoved = 7,
34 kRdnss = 8,
35 kRouteUpdated = 9,
36 kRouteRemoved = 10,
37 };
38
39private:
San Mehat168415b2009-05-06 11:14:21 -070040 int mSeq;
41 char *mPath;
Jeff Sharkeye4f39402015-03-13 13:27:33 -070042 Action mAction;
San Mehat168415b2009-05-06 11:14:21 -070043 char *mSubsystem;
44 char *mParams[NL_PARAMS_MAX];
45
46public:
San Mehat168415b2009-05-06 11:14:21 -070047 NetlinkEvent();
48 virtual ~NetlinkEvent();
49
Mike J. Chen17260b12011-06-23 15:00:30 -070050 bool decode(char *buffer, int size, int format = NetlinkListener::NETLINK_FORMAT_ASCII);
San Mehat168415b2009-05-06 11:14:21 -070051 const char *findParam(const char *paramName);
52
53 const char *getSubsystem() { return mSubsystem; }
Jeff Sharkeye4f39402015-03-13 13:27:33 -070054 Action getAction() { return mAction; }
San Mehatd6744132009-12-24 07:17:09 -080055
56 void dump();
Mike J. Chenec16b9d2011-06-23 14:55:28 -070057
58 protected:
59 bool parseBinaryNetlinkMessage(char *buffer, int size);
60 bool parseAsciiNetlinkMessage(char *buffer, int size);
Lorenzo Colitti9b342932014-06-19 13:16:04 +090061 bool parseIfInfoMessage(const struct nlmsghdr *nh);
62 bool parseIfAddrMessage(const struct nlmsghdr *nh);
63 bool parseUlogPacketMessage(const struct nlmsghdr *nh);
Jeff Sharkey9a20e672014-10-30 14:51:59 -070064 bool parseNfPacketMessage(struct nlmsghdr *nh);
Lorenzo Colittid7ff7ea2014-06-11 17:37:12 +090065 bool parseRtMessage(const struct nlmsghdr *nh);
Lorenzo Colitti9b342932014-06-19 13:16:04 +090066 bool parseNdUserOptMessage(const struct nlmsghdr *nh);
Lorenzo Colittie439ffc2017-10-03 18:44:11 +090067 struct nlattr* findNlAttr(const nlmsghdr* nl, size_t hdrlen, uint16_t attr);
San Mehat168415b2009-05-06 11:14:21 -070068};
69
70#endif