blob: c0a9418fdffed6a0af312a63d5b0439452b89d95 [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 {
24 int mSeq;
25 char *mPath;
26 int mAction;
27 char *mSubsystem;
28 char *mParams[NL_PARAMS_MAX];
29
30public:
31 const static int NlActionUnknown;
32 const static int NlActionAdd;
33 const static int NlActionRemove;
34 const static int NlActionChange;
Mike J. Chenec16b9d2011-06-23 14:55:28 -070035 const static int NlActionLinkDown;
36 const static int NlActionLinkUp;
Lorenzo Colitti526b8382013-09-03 00:25:14 +090037 const static int NlActionAddressUpdated;
38 const static int NlActionAddressRemoved;
Lorenzo Colittic7eec832013-08-12 17:03:32 +090039 const static int NlActionRdnss;
San Mehat168415b2009-05-06 11:14:21 -070040
41 NetlinkEvent();
42 virtual ~NetlinkEvent();
43
Mike J. Chen17260b12011-06-23 15:00:30 -070044 bool decode(char *buffer, int size, int format = NetlinkListener::NETLINK_FORMAT_ASCII);
San Mehat168415b2009-05-06 11:14:21 -070045 const char *findParam(const char *paramName);
46
47 const char *getSubsystem() { return mSubsystem; }
48 int getAction() { return mAction; }
San Mehatd6744132009-12-24 07:17:09 -080049
50 void dump();
Mike J. Chenec16b9d2011-06-23 14:55:28 -070051
52 protected:
53 bool parseBinaryNetlinkMessage(char *buffer, int size);
54 bool parseAsciiNetlinkMessage(char *buffer, int size);
Lorenzo Colittic7eec832013-08-12 17:03:32 +090055 bool parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr, int rtasize);
56 bool parseNdUserOptMessage(struct nduseroptmsg *msg, int optsize);
San Mehat168415b2009-05-06 11:14:21 -070057};
58
59#endif