Clatd eBpf program - skeleton
Test: builds
Bug: 65674744
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: I3132d0874ad9408a629aa967cbe6324a7c8043f3
diff --git a/bpf_progs/Android.bp b/bpf_progs/Android.bp
index 4302129..a393035 100644
--- a/bpf_progs/Android.bp
+++ b/bpf_progs/Android.bp
@@ -18,6 +18,19 @@
// bpf kernel programs
//
bpf {
+ name: "clatd.o",
+ srcs: ["clatd.c"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+ include_dirs: [
+ "system/netd/libnetdbpf/include",
+ "system/netd/libnetdutils/include",
+ ],
+}
+
+bpf {
name: "netd.o",
srcs: ["netd.c"],
cflags: [
diff --git a/bpf_progs/clatd.c b/bpf_progs/clatd.c
new file mode 100644
index 0000000..fb31b36
--- /dev/null
+++ b/bpf_progs/clatd.c
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2019 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 <linux/pkt_cls.h>
+#include "bpf_helpers.h"
+#include "netdbpf/bpf_shared.h"
+
+struct bpf_map_def SEC("maps") clat_map = {
+ .type = BPF_MAP_TYPE_HASH,
+ .key_size = sizeof(struct ClatKey),
+ .value_size = sizeof(struct ClatValue),
+ .max_entries = 16,
+};
+
+SEC("schedcls/ingress/clat_ether")
+int sched_cls_ingress_clat_ether(struct __sk_buff* skb) {
+ return TC_ACT_OK;
+}
+
+SEC("schedcls/ingress/clat_rawip")
+int sched_cls_ingress_clat_rawip(struct __sk_buff* skb) {
+ return TC_ACT_OK;
+}
+
+char _license[] SEC("license") = "Apache 2.0";