blob: 86c1f42802eab651dc66a268028be0603cb743cd [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#include <stdlib.h>
San Mehat3d407292009-05-07 08:49:30 -070017#include <string.h>
San Mehat168415b2009-05-06 11:14:21 -070018
19#define LOG_TAG "NetlinkEvent"
20#include <cutils/log.h>
21
22#include <sysutils/NetlinkEvent.h>
23
24const int NetlinkEvent::NlActionUnknown = 0;
25const int NetlinkEvent::NlActionAdd = 1;
26const int NetlinkEvent::NlActionRemove = 2;
27const int NetlinkEvent::NlActionChange = 3;
28
29NetlinkEvent::NetlinkEvent() {
30 mAction = NlActionUnknown;
San Mehatebfe3db2009-10-10 17:35:13 -070031 memset(mParams, 0, sizeof(mParams));
32 mPath = NULL;
33 mSubsystem = NULL;
San Mehat168415b2009-05-06 11:14:21 -070034}
35
36NetlinkEvent::~NetlinkEvent() {
37 int i;
38 if (mPath)
39 free(mPath);
40 if (mSubsystem)
41 free(mSubsystem);
42 for (i = 0; i < NL_PARAMS_MAX; i++) {
43 if (!mParams[i])
44 break;
45 free(mParams[i]);
46 }
47}
48
San Mehatd6744132009-12-24 07:17:09 -080049void NetlinkEvent::dump() {
50 int i;
51
52 for (i = 0; i < NL_PARAMS_MAX; i++) {
53 if (!mParams[i])
54 break;
San Mehat7e8529a2010-03-25 09:31:42 -070055 SLOGD("NL param '%s'\n", mParams[i]);
San Mehatd6744132009-12-24 07:17:09 -080056 }
57}
58
San Mehat168415b2009-05-06 11:14:21 -070059bool NetlinkEvent::decode(char *buffer, int size) {
60 char *s = buffer;
61 char *end;
62 int param_idx = 0;
63 int i;
64 int first = 1;
65
66 end = s + size;
67 while (s < end) {
68 if (first) {
69 char *p;
70 for (p = s; *p != '@'; p++);
71 p++;
72 mPath = strdup(p);
73 first = 0;
74 } else {
75 if (!strncmp(s, "ACTION=", strlen("ACTION="))) {
76 char *a = s + strlen("ACTION=");
77 if (!strcmp(a, "add"))
78 mAction = NlActionAdd;
79 else if (!strcmp(a, "remove"))
80 mAction = NlActionRemove;
81 else if (!strcmp(a, "change"))
82 mAction = NlActionChange;
San Mehat03f0d272009-05-26 15:18:25 -070083 } else if (!strncmp(s, "SEQNUM=", strlen("SEQNUM=")))
San Mehat168415b2009-05-06 11:14:21 -070084 mSeq = atoi(s + strlen("SEQNUM="));
San Mehat03f0d272009-05-26 15:18:25 -070085 else if (!strncmp(s, "SUBSYSTEM=", strlen("SUBSYSTEM=")))
San Mehat168415b2009-05-06 11:14:21 -070086 mSubsystem = strdup(s + strlen("SUBSYSTEM="));
87 else
88 mParams[param_idx++] = strdup(s);
89 }
90 s+= strlen(s) + 1;
91 }
92 return true;
93}
94
95const char *NetlinkEvent::findParam(const char *paramName) {
Chih-Wei Huang80ec37a2010-07-14 14:00:41 +080096 size_t len = strlen(paramName);
97 for (int i = 0; mParams[i] && i < NL_PARAMS_MAX; ++i) {
98 const char *ptr = mParams[i] + len;
99 if (!strncmp(mParams[i], paramName, len) && *ptr == '=')
100 return ++ptr;
San Mehat168415b2009-05-06 11:14:21 -0700101 }
102
San Mehat7e8529a2010-03-25 09:31:42 -0700103 SLOGE("NetlinkEvent::FindParam(): Parameter '%s' not found", paramName);
San Mehat168415b2009-05-06 11:14:21 -0700104 return NULL;
105}