blob: 4e5c27fca7847adbd26b1658fad2e357a551e451 [file] [log] [blame]
Erik Kline58ed1b02017-04-30 19:36:15 +09001/*
2 * Copyright (C) 2017 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
17#include <errno.h>
18#include <error.h>
19#include <hidl/HidlSupport.h>
20#include <jni.h>
21#include <JNIHelp.h>
22#include <linux/netfilter/nfnetlink.h>
23#include <linux/netlink.h>
24#include <sys/socket.h>
25#include <android-base/unique_fd.h>
26#include <android/hardware/tetheroffload/config/1.0/IOffloadConfig.h>
27
28#define LOG_TAG "OffloadHardwareInterface"
29#include <utils/Log.h>
30
31namespace android {
32
33using hardware::hidl_handle;
34using hardware::hidl_string;
35using hardware::tetheroffload::config::V1_0::IOffloadConfig;
36
37namespace {
38
39inline const sockaddr * asSockaddr(const sockaddr_nl *nladdr) {
40 return reinterpret_cast<const sockaddr *>(nladdr);
41}
42
43int conntrackSocket(unsigned groups) {
44 base::unique_fd s(socket(AF_NETLINK, SOCK_DGRAM, NETLINK_NETFILTER));
45 if (s.get() < 0) return -errno;
46
47 const struct sockaddr_nl bind_addr = {
48 .nl_family = AF_NETLINK,
49 .nl_pad = 0,
50 .nl_pid = 0,
51 .nl_groups = groups,
52 };
53 if (bind(s.get(), asSockaddr(&bind_addr), sizeof(bind_addr)) != 0) {
54 return -errno;
55 }
56
57 const struct sockaddr_nl kernel_addr = {
58 .nl_family = AF_NETLINK,
59 .nl_pad = 0,
60 .nl_pid = 0,
61 .nl_groups = groups,
62 };
63 if (connect(s.get(), asSockaddr(&kernel_addr), sizeof(kernel_addr)) != 0) {
64 return -errno;
65 }
66
67 return s.release();
68}
69
70// Return a hidl_handle that owns the file descriptor owned by fd, and will
71// auto-close it (otherwise there would be double-close problems).
72//
73// Rely upon the compiler to eliminate the constexprs used for clarity.
Erik Kline11854592017-06-15 18:06:34 +090074hidl_handle handleFromFileDescriptor(base::unique_fd fd) {
Erik Kline58ed1b02017-04-30 19:36:15 +090075 hidl_handle h;
76
77 NATIVE_HANDLE_DECLARE_STORAGE(storage, 0, 0);
78 static constexpr int kNumFds = 1;
79 static constexpr int kNumInts = 0;
80 native_handle_t *nh = native_handle_init(storage, kNumFds, kNumInts);
81 nh->data[0] = fd.release();
82
83 static constexpr bool kTakeOwnership = true;
84 h.setTo(nh, kTakeOwnership);
85
Erik Kline11854592017-06-15 18:06:34 +090086 return h;
Erik Kline58ed1b02017-04-30 19:36:15 +090087}
88
89} // namespace
90
91static jboolean android_server_connectivity_tethering_OffloadHardwareInterface_configOffload(
92 JNIEnv* /* env */) {
93 sp<IOffloadConfig> configInterface = IOffloadConfig::getService();
94 if (configInterface.get() == nullptr) {
95 ALOGD("Could not find IOffloadConfig service.");
96 return false;
97 }
98
99 // Per the IConfigOffload definition:
100 //
101 // fd1 A file descriptor bound to the following netlink groups
102 // (NF_NETLINK_CONNTRACK_NEW | NF_NETLINK_CONNTRACK_DESTROY).
103 //
104 // fd2 A file descriptor bound to the following netlink groups
105 // (NF_NETLINK_CONNTRACK_UPDATE | NF_NETLINK_CONNTRACK_DESTROY).
106 base::unique_fd
107 fd1(conntrackSocket(NFNLGRP_CONNTRACK_NEW | NFNLGRP_CONNTRACK_DESTROY)),
108 fd2(conntrackSocket(NFNLGRP_CONNTRACK_UPDATE | NFNLGRP_CONNTRACK_DESTROY));
109 if (fd1.get() < 0 || fd2.get() < 0) {
110 ALOGE("Unable to create conntrack handles: %d/%s", errno, strerror(errno));
111 return false;
112 }
113
114 hidl_handle h1(handleFromFileDescriptor(std::move(fd1))),
115 h2(handleFromFileDescriptor(std::move(fd2)));
116
117 bool rval;
118 hidl_string msg;
Erik Kline11854592017-06-15 18:06:34 +0900119 const auto status = configInterface->setHandles(h1, h2,
Erik Kline58ed1b02017-04-30 19:36:15 +0900120 [&rval, &msg](bool success, const hidl_string& errMsg) {
121 rval = success;
122 msg = errMsg;
123 });
Erik Kline11854592017-06-15 18:06:34 +0900124 if (!status.isOk() || !rval) {
125 ALOGE("IOffloadConfig::setHandles() error: '%s' / '%s'",
126 status.description().c_str(), msg.c_str());
Erik Kline58ed1b02017-04-30 19:36:15 +0900127 }
128
129 return rval;
130}
131
132/*
133 * JNI registration.
134 */
135static const JNINativeMethod gMethods[] = {
136 /* name, signature, funcPtr */
137 { "configOffload", "()Z",
138 (void*) android_server_connectivity_tethering_OffloadHardwareInterface_configOffload },
139};
140
141int register_android_server_connectivity_tethering_OffloadHardwareInterface(JNIEnv* env) {
142 return jniRegisterNativeMethods(env,
143 "com/android/server/connectivity/tethering/OffloadHardwareInterface",
144 gMethods, NELEM(gMethods));
145}
146
147}; // namespace android