Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support ip-in-ip mode network interface #10

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions ebpf/include/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ enum eth_ip_type {

#define MYSQL_ERROR_MESSAGE_MAX_SIZE 10

#define IP_IN_IP_L3_PROTO 2654
#define IP_IN_IP_OUTER_HEADER_SIZE 20

struct rpc_package_t {
__u32 rpc_type; // 4
__u32 phase; // 8
Expand Down Expand Up @@ -505,10 +508,16 @@ static __always_inline bool is_http2_preface(const char* buf, __u32 buf_size) {

__maybe_unused static __always_inline __u64 read_conn_tuple_skb(struct __sk_buff *skb, skb_info_t *info, conn_tuple_t *tup) {
bpf_memset(info, 0, sizeof(skb_info_t));
info->data_off = ETH_HLEN;
// info->data_off = ETH_HLEN;

__u16 l3_proto = load_half(skb, offsetof(struct ethhdr, h_proto));
info->data_end = ETH_HLEN;
// info->data_end = ETH_HLEN;
if (l3_proto == IP_IN_IP_L3_PROTO) {
l3_proto = ETH_P_IP;
} else {
info->data_off = ETH_HLEN;
info->data_end = ETH_HLEN;
}
__u8 l4_proto = 0;
switch (l3_proto) {
case ETH_P_IP:
Expand Down
6 changes: 3 additions & 3 deletions ebpf/plugins/http/protocols/http/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ static __always_inline void read_http_info(struct __sk_buff *skb, conn_tuple_t *
// Logical processing based on the phase.
switch (phase) {
case HTTP_REQUEST: {
if (bpf_map_lookup_elem(&filter_map, &conn_key.srcIP) == NULL) {
return;
}
// if (bpf_map_lookup_elem(&filter_map, &conn_key.srcIP) == NULL) {
// return;
// }

if (method == HTTP_METHOD_UNKNOWN) {
return;
Expand Down
6 changes: 3 additions & 3 deletions ebpf/plugins/netfilter/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ int kretprobe_nf_nat_setup_info(uint ret) {
return 0;
}
// ignore same ip
// if (originTuple.dst.u3.ip == replyTuple.src.u3.ip) {
// return 0;
// }
if (originTuple.dst.u3.ip == replyTuple.src.u3.ip) {
return 0;
}
struct nf_tuple conn_ev = {
.sport = bpf_ntohs(replyTuple.src.u.tcp.port),
.dport = bpf_ntohs(replyTuple.dst.u.tcp.port),
Expand Down
10 changes: 5 additions & 5 deletions ebpf/plugins/rpc/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ int rpc__filter_package(struct __sk_buff *skb)
pkg.pid = pid_info->pid;
}
if (pkg.phase == P_REQUEST) {
__u32 ip;
ip = __get_target_ip();
if (ip != 0 && ip != pkg.srcIP) {
return 0;
}
// __u32 ip;
// ip = __get_target_ip();
// if (ip != 0 && ip != pkg.srcIP) {
// return 0;
// }
sock_key req_conn = {0};
req_conn.srcIP = pkg.srcIP;
req_conn.dstIP = pkg.dstIP;
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/kprobe/kprobe.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type provider struct {
func (p *provider) Init(ctx servicehub.Context) error {
p.kprobeController = controller.NewController()
p.netLinks = make(map[int]NeighLink)
neighs, err := getAllVethes()
neighs, err := GetAllVethes()
if err != nil {
return err
}
Expand Down
35 changes: 18 additions & 17 deletions pkg/plugins/kprobe/kprobesysctl/ebpf_kprobe_sysctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,23 +284,24 @@ func makeServiceNodeMetric(pod *corev1.Pod) *metric.Metric {
Name: "application_service_node",
Timestamp: time.Now().UnixNano(),
Tags: map[string]string{
"_meta": "true",
"_metric_scope": "micro_service",
"_metric_scope_id": pod.Annotations["msp.erda.cloud/terminus_key"],
"application_id": pod.Labels["DICE_DEPLOYMENT_ID"],
"application_name": pod.Labels["DICE_APPLICATION_NAME"],
"cluster_name": pod.Labels["DICE_CLUSTER_NAME"],
"env_id": pod.Annotations["msp.erda.cloud/terminus_key"],
"host_ip": pod.Status.HostIP,
"host": pod.Spec.NodeName,
"instance_id": string(pod.UID),
"org_id": pod.Labels["DICE_ORG_ID"],
"org_name": pod.Labels["DICE_ORG_NAME"],
"project_id": pod.Labels["DICE_PROJECT_ID"],
"project_name": pod.Labels["DICE_PROJECT_NAME"],
"runtime_id": pod.Labels["DICE_RUNTIME_ID"],
"runtime_name": pod.Annotations["msp.erda.cloud/runtime_name"],
"service_id": pod.Labels["DICE_SERVICE"],
"_meta": "true",
"_metric_scope": "micro_service",
"_metric_scope_id": pod.Annotations["msp.erda.cloud/terminus_key"],
"application_id": pod.Labels["DICE_DEPLOYMENT_ID"],
"application_name": pod.Labels["DICE_APPLICATION_NAME"],
"cluster_name": pod.Labels["DICE_CLUSTER_NAME"],
"env_id": pod.Annotations["msp.erda.cloud/terminus_key"],
"host_ip": pod.Status.HostIP,
"host": pod.Spec.NodeName,
"instance_id": string(pod.UID),
"org_id": pod.Labels["DICE_ORG_ID"],
"org_name": pod.Labels["DICE_ORG_NAME"],
"project_id": pod.Labels["DICE_PROJECT_ID"],
"project_name": pod.Labels["DICE_PROJECT_NAME"],
"runtime_id": pod.Labels["DICE_RUNTIME_ID"],
"runtime_name": pod.Annotations["msp.erda.cloud/runtime_name"],
//"service_id": pod.Labels["DICE_SERVICE"],
"service_id": fmt.Sprintf("%s_%s_%s", pod.Annotations["msp.erda.cloud/application_id"], pod.Annotations["msp.erda.cloud/runtime_name"], pod.Annotations["msp.erda.cloud/service_name"]),
"service_instance_id": string(pod.UID),
"service_ip": pod.Status.PodIP,
"service_name": pod.Labels["DICE_SERVICE_NAME"],
Expand Down
44 changes: 38 additions & 6 deletions pkg/plugins/kprobe/netlink_manager.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package kprobe

import (
"net"

"github.com/vishvananda/netlink"
"golang.org/x/sys/unix"
"net"
)

type LinkEventType string
Expand All @@ -23,16 +24,47 @@ type NeighLinkEvent struct {
NeighLink
}

func getAllVethes() ([]NeighLink, error) {
// GetAllVethes get all bridge veth like docker0, cni0 instead of vethxxx, in this way, we can mount fewer socket network cards.
func GetAllVethes() ([]NeighLink, error) {
links, err := netlink.LinkList()
if err != nil {
return nil, err
}
targetLinks := make([]netlink.Link, 0)
//targetLinks := make([]netlink.Link, 0)
ipipLinks := make([]NeighLink, 0)
bridgeLinks := make([]NeighLink, 0)
for _, link := range links {
if link.Type() == "ipip" {
ipipLinks = append(ipipLinks, NeighLink{
Neigh: netlink.Neigh{
IP: net.IP{0, 0, 0, 0},
},
Link: link,
})
break
}
if link.Type() == "bridge" {
targetLinks = append(targetLinks, link)
bridgeLinks = append(bridgeLinks, NeighLink{
Neigh: netlink.Neigh{
IP: net.IP{0, 0, 0, 0},
},
Link: link,
})
}
//if link.Type() == "veth" {
// targetLinks = append(targetLinks, link)
//}
}
if len(ipipLinks) > 0 {
return ipipLinks, nil
}
if len(bridgeLinks) > 0 {
return bridgeLinks, nil
}

// if no bridge or ipip link, use veth link
targetLinks := make([]netlink.Link, 0)
for _, link := range links {
if link.Type() == "veth" {
targetLinks = append(targetLinks, link)
}
Expand Down Expand Up @@ -62,7 +94,7 @@ func getAllVethes() ([]NeighLink, error) {
if err != nil {
continue
}
if link.Type() == "veth" {
if link.Type() == "bridge" {
neighBr, errBr := netlink.NeighList(link.Attrs().Index, int(unix.AF_BRIDGE))
if errBr != nil {
continue
Expand All @@ -84,7 +116,7 @@ func getAllVethes() ([]NeighLink, error) {
}

func (p *provider) getVethesDiff() (added []NeighLink, removed []NeighLink, err error) {
neighs, err := getAllVethes()
neighs, err := GetAllVethes()
if err != nil {
return nil, nil, err
}
Expand Down
6 changes: 4 additions & 2 deletions pkg/plugins/protocols/http/meta/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ func (p *provider) Convert(m *ebpf.Metric) *metric.Metric {
output.Tags["source_runtime_name"] = sourcePod.Annotations["msp.erda.cloud/runtime_name"]
//output.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s",
// sourcePod.Labels["DICE_APPLICATION_ID"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Labels["DICE_SERVICE_NAME"])
output.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
//output.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
output.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s", sourcePod.Annotations["msp.erda.cloud/application_id"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Annotations["msp.erda.cloud/service_name"])
output.Tags["source_service_instance_id"] = string(sourcePod.UID)
output.Tags["source_service_name"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
output.Tags["source_terminus_key"] = sourcePod.Annotations["msp.erda.cloud/terminus_key"]
Expand Down Expand Up @@ -146,7 +147,8 @@ func (p *provider) Convert(m *ebpf.Metric) *metric.Metric {
output.Tags["target_runtime_name"] = t.Annotations["msp.erda.cloud/runtime_name"]
//output.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s",
// t.Labels["DICE_APPLICATION_ID"], t.Annotations["msp.erda.cloud/runtime_name"], t.Labels["DICE_SERVICE_NAME"])
output.Tags["target_service_id"] = t.Annotations["msp.erda.cloud/service_name"]
//output.Tags["target_service_id"] = t.Annotations["msp.erda.cloud/service_name"]
output.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s", t.Annotations["msp.erda.cloud/application_id"], t.Annotations["msp.erda.cloud/runtime_name"], t.Annotations["msp.erda.cloud/service_name"])
output.Tags["target_service_instance_id"] = string(t.UID)
output.Tags["target_service_name"] = t.Annotations["msp.erda.cloud/service_name"]
output.Tags["target_terminus_key"] = t.Annotations["msp.erda.cloud/terminus_key"]
Expand Down
6 changes: 4 additions & 2 deletions pkg/plugins/protocols/kafka/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ func (p *provider) convert2Metric(ev Event) *metric.Metric {
m.Tags["source_runtime_name"] = sourcePod.Annotations["msp.erda.cloud/runtime_name"]
//output.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s",
// sourcePod.Labels["DICE_APPLICATION_ID"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Labels["DICE_SERVICE_NAME"])
m.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
//m.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
m.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s", sourcePod.Annotations["msp.erda.cloud/application_id"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Annotations["msp.erda.cloud/service_name"])
m.Tags["source_service_instance_id"] = string(sourcePod.UID)
m.Tags["source_service_name"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
m.Tags["source_terminus_key"] = sourcePod.Annotations["msp.erda.cloud/terminus_key"]
Expand Down Expand Up @@ -192,7 +193,8 @@ func (p *provider) convert2Metric(ev Event) *metric.Metric {
m.Tags["target_runtime_name"] = t.Annotations["msp.erda.cloud/runtime_name"]
//output.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s",
// t.Labels["DICE_APPLICATION_ID"], t.Annotations["msp.erda.cloud/runtime_name"], t.Labels["DICE_SERVICE_NAME"])
m.Tags["target_service_id"] = t.Annotations["msp.erda.cloud/service_name"]
//m.Tags["target_service_id"] = t.Annotations["msp.erda.cloud/service_name"]
m.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s", t.Annotations["msp.erda.cloud/application_id"], t.Annotations["msp.erda.cloud/runtime_name"], t.Annotations["msp.erda.cloud/service_name"])
m.Tags["target_service_instance_id"] = string(t.UID)
m.Tags["target_service_name"] = t.Annotations["msp.erda.cloud/service_name"]
m.Tags["target_terminus_key"] = t.Annotations["msp.erda.cloud/terminus_key"]
Expand Down
6 changes: 4 additions & 2 deletions pkg/plugins/protocols/rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ func (p *provider) convertRpc2Metric(m *rpcebpf.Metric) metric.Metric {
res.Tags["source_runtime_id"] = sourcePod.Labels["DICE_RUNTIME_ID"]
res.Tags["source_runtime_name"] = sourcePod.Annotations["msp.erda.cloud/runtime_name"]
//res.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s", sourcePod.Labels["DICE_APPLICATION_ID"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Labels["DICE_SERVICE_NAME"])
res.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
//res.Tags["source_service_id"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
res.Tags["source_service_id"] = fmt.Sprintf("%s_%s_%s", sourcePod.Annotations["msp.erda.cloud/application_id"], sourcePod.Annotations["msp.erda.cloud/runtime_name"], sourcePod.Annotations["msp.erda.cloud/service_name"])
res.Tags["source_service_name"] = sourcePod.Annotations["msp.erda.cloud/service_name"]
res.Tags["source_workspace"] = sourcePod.Annotations["msp.erda.cloud/workspace"]
res.Tags["source_terminus_key"] = sourcePod.Annotations["msp.erda.cloud/terminus_key"]
Expand All @@ -253,7 +254,8 @@ func (p *provider) convertRpc2Metric(m *rpcebpf.Metric) metric.Metric {
res.Tags["target_runtime_id"] = targetPod.Labels["DICE_RUNTIME_ID"]
res.Tags["target_runtime_name"] = targetPod.Annotations["msp.erda.cloud/runtime_name"]
//res.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s", targetPod.Labels["DICE_APPLICATION_ID"], targetPod.Annotations["msp.erda.cloud/runtime_name"], targetPod.Labels["DICE_SERVICE_NAME"])
res.Tags["target_service_id"] = targetPod.Annotations["msp.erda.cloud/service_name"]
//res.Tags["target_service_id"] = targetPod.Annotations["msp.erda.cloud/service_name"]
res.Tags["target_service_id"] = fmt.Sprintf("%s_%s_%s", targetPod.Annotations["msp.erda.cloud/application_id"], targetPod.Annotations["msp.erda.cloud/runtime_name"], targetPod.Annotations["msp.erda.cloud/service_name"])
res.Tags["target_service_instance_id"] = string(targetPod.UID)
res.Tags["target_service_name"] = targetPod.Annotations["msp.erda.cloud/service_name"]
res.Tags["target_terminus_key"] = targetPod.Annotations["msp.erda.cloud/terminus_key"]
Expand Down
Loading