NetlinkListener.cpp revision ec16b9d47cacb0d873ee0ff80c919f49215c0005
1/*
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 <errno.h>
17
18#include <sys/types.h>
19#include <sys/socket.h>
20#include <linux/netlink.h>
21#include <string.h>
22
23#define LOG_TAG "NetlinkListener"
24#include <cutils/log.h>
25#include <cutils/uevent.h>
26
27#include <sysutils/NetlinkListener.h>
28#include <sysutils/NetlinkEvent.h>
29
30NetlinkListener::NetlinkListener(int socket, int format) :
31                            SocketListener(socket, false) {
32    mFormat = format;
33}
34
35bool NetlinkListener::onDataAvailable(SocketClient *cli)
36{
37    int socket = cli->getSocket();
38    ssize_t count;
39
40    count = TEMP_FAILURE_RETRY(uevent_kernel_multicast_recv(socket, mBuffer, sizeof(mBuffer)));
41    if (count < 0) {
42        SLOGE("recvmsg failed (%s)", strerror(errno));
43        return false;
44    }
45
46    NetlinkEvent *evt = new NetlinkEvent();
47    int err = evt->decode(mBuffer, count, mFormat);
48
49    if (!err) {
50        SLOGE("Error decoding NetlinkEvent");
51    } else {
52        onEvent(evt);
53    }
54
55    delete evt;
56    return true;
57}
58