Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7b1428f3 authored by Chris Weir's avatar Chris Weir
Browse files

Add default implementation for Nlinterceptor

Add default Netlink Interceptor implementation

Bug: 201467304
Test: atest VtsHalNetlinkInterceptorV1_0Test

Change-Id: I7c765f9528a3d5be85bf5554e22eae51c1607548
parent 0f4c3218
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -324,6 +324,13 @@
            <instance>default</instance>
        </interface>
    </hal>
    <hal format="aidl" optional="true">
        <name>android.hardware.net.nlinterceptor</name>
        <interface>
            <name>IInterceptor</name>
            <instance>default</instance>
        </interface>
    </hal>
    <hal format="aidl" optional="true">
        <name>android.hardware.oemlock</name>
        <version>1</version>
+39 −0
Original line number Diff line number Diff line
//
// Copyright (C) 2021 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

cc_binary {
    name: "android.hardware.net.nlinterceptor-service.default",
    init_rc: ["nlinterceptor-default.rc"],
    vintf_fragments: ["nlinterceptor-default.xml"],
    vendor: true,
    relative_install_path: "hw",
    defaults: ["nlinterceptor@defaults"],
    shared_libs: [
        "android.hardware.net.nlinterceptor-V1-ndk",
        "libbase",
        "libbinder_ndk",
    ],
    static_libs: [
        "libnlinterceptor",
        "libnl++",
    ],
    srcs: [
        "InterceptorRelay.cpp",
        "NetlinkInterceptor.cpp",
        "service.cpp",
        "util.cpp",
    ],
}
+129 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "InterceptorRelay.h"

#include <android-base/logging.h>
#include <libnl++/printer.h>
#include <poll.h>

#include <chrono>

#include "util.h"

namespace android::nlinterceptor {
using namespace std::chrono_literals;

static constexpr std::chrono::milliseconds kPollTimeout = 300ms;
static constexpr bool kSuperVerbose = true;

InterceptorRelay::InterceptorRelay(uint32_t nlFamily, uint32_t clientNlPid,
                                   const std::string& clientName)
    : mClientName(clientName),
      mNlSocket(std::make_optional<nl::Socket>(nlFamily, 0, 0)),
      mClientNlPid(clientNlPid) {}

InterceptorRelay::~InterceptorRelay() {
    mRunning = false;
    if (mRelayThread.joinable()) mRelayThread.join();
}

uint32_t InterceptorRelay::getPid() {
    auto pidMaybe = mNlSocket->getPid();
    CHECK(pidMaybe.has_value()) << "Failed to get pid of nl::Socket!";
    return *pidMaybe;
}

void InterceptorRelay::relayMessages() {
    pollfd fds[] = {
        mNlSocket->preparePoll(POLLIN),
    };
    while (mRunning) {
        if (poll(fds, countof(fds), kPollTimeout.count()) < 0) {
            PLOG(FATAL) << "poll failed";
            return;
        }
        const auto nlsockEvents = fds[0].revents;

        if (isSocketBad(nlsockEvents)) {
            LOG(ERROR) << "Netlink socket is bad";
            mRunning = false;
            return;
        }
        if (!isSocketReadable(nlsockEvents)) continue;

        const auto [msgMaybe, sa] = mNlSocket->receiveFrom();
        if (!msgMaybe.has_value()) {
            LOG(ERROR) << "Failed to receive Netlink data!";
            mRunning = false;
            return;
        }
        const auto msg = *msgMaybe;
        if (!msg.firstOk()) {
            LOG(ERROR) << "Netlink packet is malformed!";
            // Test messages might be empty, this isn't fatal.
            continue;
        }
        if constexpr (kSuperVerbose) {
            LOG(VERBOSE) << "[" << mClientName
                         << "] nlMsg: " << nl::toString(msg, NETLINK_GENERIC);
        }

        uint32_t destinationPid = 0;
        if (sa.nl_pid == 0) {
            destinationPid = mClientNlPid;
        }

        if (!mNlSocket->send(msg, destinationPid)) {
            LOG(ERROR) << "Failed to send Netlink message!";
            mRunning = false;
            return;
        }
    }
    LOG(VERBOSE) << "[" << mClientName << "] Exiting relay thread!";
}

bool InterceptorRelay::start() {
    if (mRunning) {
        LOG(ERROR)
            << "Can't relay messages: InterceptorRelay is already running!";
        return false;
    }
    if (mRelayThread.joinable()) {
        LOG(ERROR) << "relay thread is already running!";
        return false;
    }
    if (!mNlSocket.has_value()) {
        LOG(ERROR) << "Netlink socket not initialized!";
        return false;
    }

    mRunning = true;
    mRelayThread = std::thread(&InterceptorRelay::relayMessages, this);

    LOG(VERBOSE) << "Relay threads initialized";
    return true;
}

bool InterceptorRelay::subscribeGroup(uint32_t nlGroup) {
    return mNlSocket->addMembership(nlGroup);
}

bool InterceptorRelay::unsubscribeGroup(uint32_t nlGroup) {
    return mNlSocket->dropMembership(nlGroup);
}

}  // namespace android::nlinterceptor
+93 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#pragma once

#include <libnl++/Socket.h>

#include <mutex>
#include <thread>

namespace android::nlinterceptor {

class InterceptorRelay {
   public:
    /**
     * Wrapper around the netlink socket and thread which relays messages.
     *
     * \param nlFamily - netlink family to use for the netlink socket.
     * \param clientNlPid - pid of the client netlink socket.
     * \param clientName - name of the client to be used for debugging.
     */
    InterceptorRelay(uint32_t nlFamily, uint32_t clientNlPid,
                     const std::string& clientName);

    /**
     * Stops the relay thread if running and destroys itself.
     */
    ~InterceptorRelay();

    /**
     * Returns the PID of the internal Netlink socket.
     *
     * \return value of PID,
     */
    uint32_t getPid();

    /**
     * Spawns relay thread.
     */
    bool start();

    /**
     * Subscribes the internal socket to a single Netlink multicast group.
     *
     * \param nlGroup - Netlink group to subscribe to.
     * \returns - true for success, false for failure.
     */
    bool subscribeGroup(uint32_t nlGroup);

    /**
     * Unsubscribes the internal socket from a single Netlink multicast group.
     *
     * \param nlGroup - Netlink group to unsubscribe from.
     * \returns - true for success, false for failure.
     */
    bool unsubscribeGroup(uint32_t nlGroup);

   private:
    std::string mClientName;  ///< Name of client (Wificond, for example).
    std::optional<nl::Socket> mNlSocket;
    const uint32_t mClientNlPid = 0;  ///< pid of client NL socket.

    /**
     * If set to true, the relay thread should be running. Setting this to false
     * stops the relay thread.
     */
    std::atomic_bool mRunning = false;

    /**
     * Reads incoming Netlink messages destined for mNlSocket. If from the
     * kernel, the message is relayed to the client specified in the
     * constructor. Otherwise, the message is relayed to the kernel. This will
     * run as long as mRunning is set to true.
     */
    void relayMessages();

    std::thread mRelayThread;
};

}  // namespace android::nlinterceptor
+121 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "NetlinkInterceptor.h"

#include <android-base/logging.h>
#include <libnl++/Socket.h>

namespace android::nlinterceptor {

ndk::ScopedAStatus NetlinkInterceptor::createSocket(
    int32_t nlFamilyAidl, int32_t clientNlPidAidl,
    const std::string& clientName, AidlInterceptedSocket* interceptedSocket) {
    auto nlFamily = static_cast<uint32_t>(nlFamilyAidl);
    auto clientNlPid = static_cast<uint32_t>(clientNlPidAidl);
    uint32_t interceptorNlPid = 0;

    std::unique_ptr<InterceptorRelay> interceptor =
        std::make_unique<InterceptorRelay>(nlFamily, clientNlPid, clientName);

    interceptorNlPid = interceptor->getPid();

    if (interceptorNlPid == 0) {
        LOG(ERROR) << "Failed to create a Netlink socket for " << clientName
                   << ", " << nlFamily << ":" << clientNlPid;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    if (mClientMap.find({nlFamily, interceptorNlPid}) != mClientMap.end()) {
        LOG(ERROR) << "A socket with pid " << interceptorNlPid
                   << " already exists!";
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    if (!interceptor->start()) {
        LOG(ERROR) << "Failed to start interceptor thread!";
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    if (!mClientMap
             .emplace(InterceptedSocket(nlFamily, interceptorNlPid),
                      std::move(interceptor))
             .second) {
        // If this happens, it is very bad.
        LOG(FATAL) << "Failed to insert interceptor instance with pid "
                   << interceptorNlPid << " into map!";
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    interceptedSocket->nlFamily = nlFamily;
    interceptedSocket->portId = interceptorNlPid;

    return ndk::ScopedAStatus::ok();
}

ndk::ScopedAStatus NetlinkInterceptor::closeSocket(
    const AidlInterceptedSocket& interceptedSocket) {
    InterceptedSocket sock(interceptedSocket);

    auto interceptorIt = mClientMap.find(sock);
    if (interceptorIt == mClientMap.end()) {
        LOG(ERROR) << "closeSocket Failed! No such socket " << sock;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }
    mClientMap.erase(interceptorIt);

    return ndk::ScopedAStatus::ok();
}

ndk::ScopedAStatus NetlinkInterceptor::subscribeGroup(
    const AidlInterceptedSocket& interceptedSocket, int32_t nlGroupAidl) {
    InterceptedSocket sock(interceptedSocket);
    auto nlGroup = static_cast<uint32_t>(nlGroupAidl);

    auto interceptorIt = mClientMap.find(sock);
    if (interceptorIt == mClientMap.end()) {
        LOG(ERROR) << "subscribeGroup failed! No such socket " << sock;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    auto& interceptor = interceptorIt->second;
    if (!interceptor->subscribeGroup(nlGroup)) {
        LOG(ERROR) << "Failed to subscribe " << sock << " to " << nlGroup;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    return ndk::ScopedAStatus::ok();
}

ndk::ScopedAStatus NetlinkInterceptor::unsubscribeGroup(
    const AidlInterceptedSocket& interceptedSocket, int32_t nlGroupAidl) {
    InterceptedSocket sock(interceptedSocket);
    auto nlGroup = static_cast<uint32_t>(nlGroupAidl);

    auto interceptorIt = mClientMap.find(sock);
    if (interceptorIt == mClientMap.end()) {
        LOG(ERROR) << "unsubscribeGroup failed! No such socket " << sock;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }

    auto& interceptor = interceptorIt->second;
    if (!interceptor->unsubscribeGroup(nlGroup)) {
        LOG(ERROR) << "Failed to unsubscribe " << sock << " from " << nlGroup;
        return ndk::ScopedAStatus(AStatus_fromStatus(::android::UNKNOWN_ERROR));
    }
    return ndk::ScopedAStatus::ok();
}
}  // namespace android::nlinterceptor
Loading