blob: 454cded606aaa2e95ebbd198dcd6841501fa8a2e [file] [log] [blame]
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -07001/*
Maciej Żenczykowski283c25a2023-10-02 19:43:30 -07002 * Copyright (C) 2017-2023 The Android Open Source Project
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -07003 *
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#ifndef LOG_TAG
Maciej Żenczykowski283c25a2023-10-02 19:43:30 -070018#define LOG_TAG "NetBpfLoad"
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070019#endif
20
21#include <arpa/inet.h>
22#include <dirent.h>
23#include <elf.h>
24#include <error.h>
25#include <fcntl.h>
26#include <inttypes.h>
27#include <linux/bpf.h>
28#include <linux/unistd.h>
29#include <net/if.h>
30#include <stdint.h>
31#include <stdio.h>
32#include <stdlib.h>
33#include <string.h>
34#include <unistd.h>
35
36#include <sys/mman.h>
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
40
41#include <android-base/logging.h>
42#include <android-base/macros.h>
43#include <android-base/properties.h>
44#include <android-base/stringprintf.h>
45#include <android-base/strings.h>
46#include <android-base/unique_fd.h>
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070047#include <log/log.h>
Maciej Żenczykowski40dfe532023-10-08 20:21:11 -070048
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070049#include "BpfSyscallWrappers.h"
50#include "bpf/BpfUtils.h"
Maciej Żenczykowski40dfe532023-10-08 20:21:11 -070051#include "loader.h"
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070052
53using android::base::EndsWith;
54using android::bpf::domain;
55using std::string;
56
57bool exists(const char* const path) {
58 int v = access(path, F_OK);
59 if (!v) {
60 ALOGI("%s exists.", path);
61 return true;
62 }
63 if (errno == ENOENT) return false;
64 ALOGE("FATAL: access(%s, F_OK) -> %d [%d:%s]", path, v, errno, strerror(errno));
65 abort(); // can only hit this if permissions (likely selinux) are screwed up
66}
67
68constexpr unsigned long long kTetheringApexDomainBitmask =
69 domainToBitmask(domain::tethering) |
70 domainToBitmask(domain::net_private) |
71 domainToBitmask(domain::net_shared) |
72 domainToBitmask(domain::netd_readonly) |
73 domainToBitmask(domain::netd_shared);
74
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070075
76const android::bpf::Location locations[] = {
77 // S+ Tethering mainline module (network_stack): tether offload
78 {
79 .dir = "/apex/com.android.tethering/etc/bpf/",
80 .prefix = "tethering/",
81 .allowedDomainBitmask = kTetheringApexDomainBitmask,
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070082 },
83 // T+ Tethering mainline module (shared with netd & system server)
84 // netutils_wrapper (for iptables xt_bpf) has access to programs
85 {
86 .dir = "/apex/com.android.tethering/etc/bpf/netd_shared/",
87 .prefix = "netd_shared/",
88 .allowedDomainBitmask = kTetheringApexDomainBitmask,
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070089 },
90 // T+ Tethering mainline module (shared with netd & system server)
91 // netutils_wrapper has no access, netd has read only access
92 {
93 .dir = "/apex/com.android.tethering/etc/bpf/netd_readonly/",
94 .prefix = "netd_readonly/",
95 .allowedDomainBitmask = kTetheringApexDomainBitmask,
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -070096 },
97 // T+ Tethering mainline module (shared with system server)
98 {
99 .dir = "/apex/com.android.tethering/etc/bpf/net_shared/",
100 .prefix = "net_shared/",
101 .allowedDomainBitmask = kTetheringApexDomainBitmask,
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -0700102 },
103 // T+ Tethering mainline module (not shared, just network_stack)
104 {
105 .dir = "/apex/com.android.tethering/etc/bpf/net_private/",
106 .prefix = "net_private/",
107 .allowedDomainBitmask = kTetheringApexDomainBitmask,
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -0700108 },
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -0700109};
110
111int loadAllElfObjects(const android::bpf::Location& location) {
112 int retVal = 0;
113 DIR* dir;
114 struct dirent* ent;
115
116 if ((dir = opendir(location.dir)) != NULL) {
117 while ((ent = readdir(dir)) != NULL) {
118 string s = ent->d_name;
119 if (!EndsWith(s, ".o")) continue;
120
121 string progPath(location.dir);
122 progPath += s;
123
124 bool critical;
125 int ret = android::bpf::loadProg(progPath.c_str(), &critical, location);
126 if (ret) {
127 if (critical) retVal = ret;
128 ALOGE("Failed to load object: %s, ret: %s", progPath.c_str(), std::strerror(-ret));
129 } else {
130 ALOGI("Loaded object: %s", progPath.c_str());
131 }
132 }
133 closedir(dir);
134 }
135 return retVal;
136}
137
138int createSysFsBpfSubDir(const char* const prefix) {
139 if (*prefix) {
140 mode_t prevUmask = umask(0);
141
142 string s = "/sys/fs/bpf/";
143 s += prefix;
144
145 errno = 0;
146 int ret = mkdir(s.c_str(), S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO);
147 if (ret && errno != EEXIST) {
148 const int err = errno;
149 ALOGE("Failed to create directory: %s, ret: %s", s.c_str(), std::strerror(err));
150 return -err;
151 }
152
153 umask(prevUmask);
154 }
155 return 0;
156}
157
158// Technically 'value' doesn't need to be newline terminated, but it's best
159// to include a newline to match 'echo "value" > /proc/sys/...foo' behaviour,
160// which is usually how kernel devs test the actual sysctl interfaces.
161int writeProcSysFile(const char *filename, const char *value) {
162 android::base::unique_fd fd(open(filename, O_WRONLY | O_CLOEXEC));
163 if (fd < 0) {
164 const int err = errno;
165 ALOGE("open('%s', O_WRONLY | O_CLOEXEC) -> %s", filename, strerror(err));
166 return -err;
167 }
168 int len = strlen(value);
169 int v = write(fd, value, len);
170 if (v < 0) {
171 const int err = errno;
172 ALOGE("write('%s', '%s', %d) -> %s", filename, value, len, strerror(err));
173 return -err;
174 }
175 if (v != len) {
176 // In practice, due to us only using this for /proc/sys/... files, this can't happen.
177 ALOGE("write('%s', '%s', %d) -> short write [%d]", filename, value, len, v);
178 return -EINVAL;
179 }
180 return 0;
181}
182
183int main(int argc, char** argv) {
184 (void)argc;
185 android::base::InitLogging(argv, &android::base::KernelLogger);
186
187 if (!android::bpf::isAtLeastKernelVersion(4, 19, 0)) {
188 ALOGE("Android U QPR2 requires kernel 4.19.");
189 return 1;
190 }
191
192 if (android::bpf::isUserspace32bit() && android::bpf::isAtLeastKernelVersion(6, 2, 0)) {
193 /* Android 14/U should only launch on 64-bit kernels
194 * T launches on 5.10/5.15
195 * U launches on 5.15/6.1
196 * So >=5.16 implies isKernel64Bit()
197 *
198 * We thus added a test to V VTS which requires 5.16+ devices to use 64-bit kernels.
199 *
200 * Starting with Android V, which is the first to support a post 6.1 Linux Kernel,
201 * we also require 64-bit userspace.
202 *
203 * There are various known issues with 32-bit userspace talking to various
204 * kernel interfaces (especially CAP_NET_ADMIN ones) on a 64-bit kernel.
205 * Some of these have userspace or kernel workarounds/hacks.
206 * Some of them don't...
207 * We're going to be removing the hacks.
208 *
209 * Additionally the 32-bit kernel jit support is poor,
210 * and 32-bit userspace on 64-bit kernel bpf ringbuffer compatibility is broken.
211 */
212 ALOGE("64-bit userspace required on 6.2+ kernels.");
213 return 1;
214 }
215
216 // Ensure we can determine the Android build type.
217 if (!android::bpf::isEng() && !android::bpf::isUser() && !android::bpf::isUserdebug()) {
218 ALOGE("Failed to determine the build type: got %s, want 'eng', 'user', or 'userdebug'",
219 android::bpf::getBuildType().c_str());
220 return 1;
221 }
222
223 // Linux 5.16-rc1 changed the default to 2 (disabled but changeable), but we need 0 (enabled)
224 // (this writeFile is known to fail on at least 4.19, but always defaults to 0 on pre-5.13,
225 // on 5.13+ it depends on CONFIG_BPF_UNPRIV_DEFAULT_OFF)
226 if (writeProcSysFile("/proc/sys/kernel/unprivileged_bpf_disabled", "0\n") &&
227 android::bpf::isAtLeastKernelVersion(5, 13, 0)) return 1;
228
229 // Enable the eBPF JIT -- but do note that on 64-bit kernels it is likely
230 // already force enabled by the kernel config option BPF_JIT_ALWAYS_ON.
231 // (Note: this (open) will fail with ENOENT 'No such file or directory' if
232 // kernel does not have CONFIG_BPF_JIT=y)
233 // BPF_JIT is required by R VINTF (which means 4.14/4.19/5.4 kernels),
234 // but 4.14/4.19 were released with P & Q, and only 5.4 is new in R+.
235 if (writeProcSysFile("/proc/sys/net/core/bpf_jit_enable", "1\n")) return 1;
236
237 // Enable JIT kallsyms export for privileged users only
238 // (Note: this (open) will fail with ENOENT 'No such file or directory' if
239 // kernel does not have CONFIG_HAVE_EBPF_JIT=y)
240 if (writeProcSysFile("/proc/sys/net/core/bpf_jit_kallsyms", "1\n")) return 1;
241
242 // Create all the pin subdirectories
243 // (this must be done first to allow selinux_context and pin_subdir functionality,
244 // which could otherwise fail with ENOENT during object pinning or renaming,
245 // due to ordering issues)
246 for (const auto& location : locations) {
247 if (createSysFsBpfSubDir(location.prefix)) return 1;
248 }
249
Maciej Żenczykowski60c159f2023-10-02 14:54:48 -0700250 // Load all ELF objects, create programs and maps, and pin them
251 for (const auto& location : locations) {
252 if (loadAllElfObjects(location) != 0) {
253 ALOGE("=== CRITICAL FAILURE LOADING BPF PROGRAMS FROM %s ===", location.dir);
254 ALOGE("If this triggers reliably, you're probably missing kernel options or patches.");
255 ALOGE("If this triggers randomly, you might be hitting some memory allocation "
256 "problems or startup script race.");
257 ALOGE("--- DO NOT EXPECT SYSTEM TO BOOT SUCCESSFULLY ---");
258 sleep(20);
259 return 2;
260 }
261 }
262
263 int key = 1;
264 int value = 123;
265 android::base::unique_fd map(
266 android::bpf::createMap(BPF_MAP_TYPE_ARRAY, sizeof(key), sizeof(value), 2, 0));
267 if (android::bpf::writeToMapEntry(map, &key, &value, BPF_ANY)) {
268 ALOGE("Critical kernel bug - failure to write into index 1 of 2 element bpf map array.");
269 return 1;
270 }
271
272 if (android::base::SetProperty("bpf.progs_loaded", "1") == false) {
273 ALOGE("Failed to set bpf.progs_loaded property");
274 return 1;
275 }
276
277 return 0;
278}