socket.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. package tracer
  2. import (
  3. "fmt"
  4. "github.com/cilium/ebpf"
  5. "github.com/cilium/ebpf/btf"
  6. "github.com/coroot/coroot-node-agent/utils"
  7. "k8s.io/klog/v2"
  8. "net"
  9. "os"
  10. "runtime"
  11. "syscall"
  12. "time"
  13. )
  14. func init() {
  15. enable_ebpf_protocol(PROTO_HTTP1)
  16. enable_ebpf_protocol(PROTO_HTTP2)
  17. enable_ebpf_protocol(PROTO_TLS_HTTP1)
  18. enable_ebpf_protocol(PROTO_TLS_HTTP2)
  19. enable_ebpf_protocol(PROTO_DUBBO)
  20. enable_ebpf_protocol(PROTO_SOFARPC)
  21. enable_ebpf_protocol(PROTO_MYSQL)
  22. enable_ebpf_protocol(PROTO_POSTGRESQL)
  23. enable_ebpf_protocol(PROTO_REDIS)
  24. enable_ebpf_protocol(PROTO_KAFKA)
  25. enable_ebpf_protocol(PROTO_MQTT)
  26. enable_ebpf_protocol(PROTO_DNS)
  27. }
  28. func MapInit(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions) {
  29. set_offset_map(collectionSpec, opts)
  30. set_conf_map_default(collectionSpec, opts)
  31. //offsetData := make([]any, runtime.NumCPU())
  32. //for i := range offsetData {
  33. // offsetData[i] = testStruct{
  34. // test_id: 99999,
  35. // }
  36. //}
  37. //if bpf_table_set_value(collectionSpec, opts, "test_heap", offsetData) != ETR_OK {}
  38. //insert_output_prog_to_map(collectionSpec, opts)
  39. }
  40. func MapInsert(collection *ebpf.Collection) {
  41. insert_output_prog_to_map(collection)
  42. insert_adapt_kern_uid_to_map(collection)
  43. // Update go offsets to eBPF "proc_info_map"
  44. //update_proc_info_to_map(collection)
  45. // Update protocol filter array
  46. update_protocol_filter_array(collection)
  47. }
  48. func insert_output_prog_to_map(collection *ebpf.Collection) {
  49. // jmp for tracepoints
  50. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_TP_NAME, PROG_DATA_SUBMIT_NAME_FOR_TP, PROG_DATA_SUBMIT_TP_IDX)
  51. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_TP_NAME, PROG_OUTPUT_DATA_NAME_FOR_TP, PROG_OUTPUT_DATA_TP_IDX)
  52. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_TP_NAME, PROG_IO_EVENT_NAME_FOR_TP, PROG_IO_EVENT_TP_IDX)
  53. // jmp for kprobe/uprobe
  54. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_KP_NAME, PROG_DATA_SUBMIT_NAME_FOR_KP, PROG_DATA_SUBMIT_KP_IDX)
  55. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_KP_NAME, PROG_OUTPUT_DATA_NAME_FOR_KP, PROG_OUTPUT_DATA_KP_IDX)
  56. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_UP_NAME, PROG_SAVE_SC_DATA_FOR_UP, PROG_DATA_SAVE_UP_IDX)
  57. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_UP_NAME, PROG_JAVA_UPDATE_HEADER_FOR_UP, PROG_DATA_JAVA_UPDATE_HEADER_UP_IDX)
  58. __insert_output_prog_to_map(collection, MAP_PROGS_JMP_UP_NAME, PROG_GO_UPDATE_HEADER_FOR_UP, PROG_DATA_GO_UPDATE_HEADER_UP_IDX)
  59. }
  60. func __insert_output_prog_to_map(collection *ebpf.Collection, mapName string, progName string, key uint32) {
  61. // find in programs
  62. prog, ok := collection.Programs[progName]
  63. fmt.Println(prog, ok)
  64. if ok {
  65. progFd := prog.FD()
  66. code, err := bpf_table_set_value(collection, mapName, key, uint32(progFd))
  67. if err != nil {
  68. klog.Error(err, code)
  69. }
  70. }
  71. }
  72. func update_protocol_filter_array(collection *ebpf.Collection) {
  73. for i := 0; i < PROTO_NUM; i++ {
  74. code, err := bpf_table_set_value(collection, MAP_PROTO_FILTER_NAME, uint32(i), EbpfConfigProtocolFilter[i])
  75. if err != nil || code != ETR_OK {
  76. klog.Error(err, code)
  77. }
  78. }
  79. }
  80. //func update_allow_port_bitmap(collection *ebpf.Collection) {
  81. // for i := 0; i < PROTO_NUM; i++ {
  82. // if bpf_table_set_value(collection, MAP_ALLOW_PORT_BITMAP_NAME, 0, &allow_port_bitmap) != ETR_OK {
  83. // fmt.Println("no")
  84. // } else {
  85. // fmt.Println("ok")
  86. // }
  87. // }
  88. //}
  89. func insert_adapt_kern_uid_to_map(collection *ebpf.Collection) {
  90. pid := os.Getpid()
  91. tid := syscall.Gettid()
  92. adaptKernUID := uint64(pid)<<32 | uint64(tid)
  93. code, err := bpf_table_set_value(collection, MAP_ADAPT_KERN_UID_NAME, 0, uint32(adaptKernUID))
  94. if err != nil || code != ETR_OK {
  95. klog.Error(err, code)
  96. }
  97. }
  98. func enable_ebpf_protocol(protocol int) {
  99. if protocol < PROTO_NUM {
  100. EbpfConfigProtocolFilter[protocol] = 1
  101. }
  102. }
  103. func Offset() {
  104. listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", offsetInferServerAddr, offsetInferServerPort))
  105. if err != nil {
  106. fmt.Errorf("failed to create server listener: %v", err)
  107. return
  108. }
  109. if err := kernelOffsetInferServer(listener); err != nil {
  110. fmt.Printf("Error in kernel_offset_infer_server: %v\n", err)
  111. }
  112. if err := kernelOffsetInferClient(); err != nil {
  113. fmt.Printf("Error in kernel_offset_infer_client: %v\n", err)
  114. }
  115. defer listener.Close()
  116. }
  117. func set_offset_map(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions) {
  118. // 解析BTF数据
  119. if update_offset_map_from_btf_vmlinux(collectionSpec, opts) != ETR_OK {
  120. klog.Infof("[eBPF Kernel Adapt] Set offsets map from btf_vmlinux, not support.\n")
  121. if update_offset_map_default(collectionSpec, opts) != ETR_OK {
  122. klog.Infof("Fatal error, failed to update default offset\n")
  123. }
  124. } else {
  125. klog.Infof("[eBPF Kernel Adapt] Set offsets map from btf_vmlinux, success.\n")
  126. }
  127. }
  128. // __u64 socket_id; // 会话标识
  129. // __u64 coroutine_trace_id; // 同一协程的数据转发关联
  130. // __u64 thread_trace_id; // 同一进程/线程的数据转发关联,用于多事务流转场景
  131. // __u64 data_limit_max; // Maximum number of data transfers
  132. // __u64 go_tracing_timeout;
  133. // __u64 io_event_collect_mode;
  134. // __u64 io_event_minimal_duration;
  135. func set_conf_map_default(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions) {
  136. fmt.Println("GetHostID")
  137. _, charHostID := utils.GetHostID()
  138. _, charAppID := utils.GetAppID()
  139. uidBase := uint64(time.Now().UnixNano()/int64(time.Millisecond)) & 0xffffffffffffff
  140. numCPU := runtime.NumCPU()
  141. nCPU, _ := utils.GetCPUCount()
  142. tConf := make([]any, numCPU)
  143. for i := range tConf {
  144. socketID := uint64(i)<<56 | uint64(uidBase)
  145. tracerConf := traceConf{
  146. SocketID: socketID,
  147. CoroutineTraceID: socketID,
  148. ThreadTraceID: socketID,
  149. DataLimitMax: 4096,
  150. GoTracingTimeout: 120,
  151. IOEventCollectMode: 1,
  152. IOEventMinimalDuartion: 1000000,
  153. HostID: charHostID,
  154. APPID: charAppID,
  155. TotalCpus: uint64(nCPU),
  156. }
  157. tConf[i] = tracerConf
  158. }
  159. if bpf_table_pre_set_value(collectionSpec, opts, MAP_TRACE_CONF_NAME, tConf) != ETR_OK {
  160. klog.Infof("[eBPF Kernel Adapt] Set config map from btf_vmlinux, not support.\n")
  161. } else {
  162. klog.Infof("[eBPF Kernel Adapt] Set config map from btf_vmlinux, success.\n")
  163. }
  164. }
  165. // 解析BTF数据
  166. func update_offset_map_from_btf_vmlinux(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions) int {
  167. btfSpec, err := btf.LoadKernelSpec()
  168. if err != nil || btfSpec == nil {
  169. return ETR_NOTSUPP
  170. }
  171. copied_seq_offs := kernel_struct_field_offset(btfSpec, "tcp_sock", "copied_seq")
  172. write_seq_offs := kernel_struct_field_offset(btfSpec, "tcp_sock", "write_seq")
  173. files_offs := kernel_struct_field_offset(btfSpec, "task_struct", "files")
  174. sk_flags_offs := kernel_struct_field_offset(btfSpec, "sock", "__sk_flags_offset")
  175. if sk_flags_offs == ETR_NOTEXIST {
  176. sk_flags_offs = kernel_struct_field_offset(btfSpec, "sock", "sk_pacing_shift")
  177. if sk_flags_offs > 0 {
  178. sk_flags_offs -= 1
  179. }
  180. }
  181. struct_files_struct_fdt_offset := kernel_struct_field_offset(btfSpec, "files_struct", "fdt")
  182. struct_files_private_data_offset := kernel_struct_field_offset(btfSpec, "file", "private_data")
  183. struct_file_f_inode_offset := kernel_struct_field_offset(btfSpec, "file", "f_inode")
  184. struct_inode_i_mode_offset := kernel_struct_field_offset(btfSpec, "inode", "i_mode")
  185. struct_file_dentry_offset_1 := kernel_struct_field_offset(btfSpec, "file", "f_path")
  186. struct_file_dentry_offset_2 := kernel_struct_field_offset(btfSpec, "path", "dentry")
  187. if struct_file_dentry_offset_1 < 0 ||
  188. struct_file_dentry_offset_2 < 0 {
  189. return ETR_NOTSUPP
  190. }
  191. struct_file_dentry_offset := struct_file_dentry_offset_1 + struct_file_dentry_offset_2
  192. struct_dentry_name_offset_1 := kernel_struct_field_offset(btfSpec, "dentry", "d_name")
  193. struct_dentry_name_offset_2 := kernel_struct_field_offset(btfSpec, "qstr", "name")
  194. if struct_dentry_name_offset_1 < 0 ||
  195. struct_dentry_name_offset_2 < 0 {
  196. return ETR_NOTSUPP
  197. }
  198. struct_dentry_name_offset := struct_dentry_name_offset_1 + struct_dentry_name_offset_2
  199. struct_sock_family_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_family")
  200. struct_sock_saddr_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_rcv_saddr")
  201. struct_sock_daddr_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_daddr")
  202. struct_sock_ip6saddr_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_v6_rcv_saddr")
  203. struct_sock_ip6daddr_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_v6_daddr")
  204. struct_sock_dport_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_dport")
  205. struct_sock_sport_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_num")
  206. struct_sock_skc_state_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_state")
  207. struct_sock_common_ipv6only_offset := kernel_struct_field_offset(btfSpec, "sock_common", "skc_flags")
  208. klog.Infof("Offsets from BTF vmlinux:\n")
  209. klog.Infof(" copied_seq_offs: 0x%x\n", copied_seq_offs)
  210. klog.Infof(" write_seq_offs: 0x%x\n", write_seq_offs)
  211. klog.Infof(" files_offs: 0x%x\n", files_offs)
  212. klog.Infof(" sk_flags_offs: 0x%x\n", sk_flags_offs)
  213. klog.Infof(" struct_files_struct_fdt_offset: 0x%x\n", struct_files_struct_fdt_offset)
  214. klog.Infof(" struct_files_private_data_offset: 0x%x\n", struct_files_private_data_offset)
  215. klog.Infof(" struct_file_f_inode_offset: 0x%x\n", struct_file_f_inode_offset)
  216. klog.Infof(" struct_inode_i_mode_offset: 0x%x\n", struct_inode_i_mode_offset)
  217. klog.Infof(" struct_file_dentry_offset: 0x%x\n", struct_file_dentry_offset)
  218. klog.Infof(" struct_dentry_name_offset: 0x%x\n", struct_dentry_name_offset)
  219. klog.Infof(" struct_sock_family_offset: 0x%x\n", struct_sock_family_offset)
  220. klog.Infof(" struct_sock_saddr_offset: 0x%x\n", struct_sock_saddr_offset)
  221. klog.Infof(" struct_sock_daddr_offset: 0x%x\n", struct_sock_daddr_offset)
  222. klog.Infof(" struct_sock_ip6saddr_offset: 0x%x\n", struct_sock_ip6saddr_offset)
  223. klog.Infof(" struct_sock_ip6daddr_offset: 0x%x\n", struct_sock_ip6daddr_offset)
  224. klog.Infof(" struct_sock_dport_offset: 0x%x\n", struct_sock_dport_offset)
  225. klog.Infof(" struct_sock_sport_offset: 0x%x\n", struct_sock_sport_offset)
  226. klog.Infof(" struct_sock_skc_state_offset: 0x%x\n", struct_sock_skc_state_offset)
  227. klog.Infof(" struct_sock_common_ipv6only_offset: 0x%x\n", struct_sock_common_ipv6only_offset)
  228. if copied_seq_offs < 0 || write_seq_offs < 0 || files_offs < 0 ||
  229. sk_flags_offs < 0 || struct_files_struct_fdt_offset < 0 ||
  230. struct_files_private_data_offset < 0 ||
  231. struct_file_f_inode_offset < 0 || struct_inode_i_mode_offset < 0 ||
  232. struct_inode_i_mode_offset < 0 || struct_file_dentry_offset < 0 ||
  233. struct_dentry_name_offset < 0 || struct_sock_family_offset < 0 ||
  234. struct_sock_saddr_offset < 0 || struct_sock_daddr_offset < 0 ||
  235. struct_sock_ip6saddr_offset < 0 ||
  236. struct_sock_ip6daddr_offset < 0 || struct_sock_dport_offset < 0 ||
  237. struct_sock_sport_offset < 0 || struct_sock_skc_state_offset < 0 ||
  238. struct_sock_common_ipv6only_offset < 0 {
  239. return ETR_NOTSUPP
  240. }
  241. offset := bpfOffsetParam{}
  242. offset.Ready = 1
  243. offset.TaskFilesOffset = uint32(files_offs)
  244. offset.SockFlagsOffset = uint32(sk_flags_offs)
  245. offset.TcpSockCopiedSeqOffset = uint32(copied_seq_offs)
  246. offset.TcpSockWriteSeqOffset = uint32(write_seq_offs)
  247. offset.StructFilesStructFdtOffset = uint32(struct_files_struct_fdt_offset)
  248. offset.StructFilesPrivateDataOffset = uint32(struct_files_private_data_offset)
  249. offset.StructFileFInodeOffset = uint32(struct_file_f_inode_offset)
  250. offset.StructInodeIModeOffset = uint32(struct_inode_i_mode_offset)
  251. offset.StructFileDentryOffset = uint32(struct_file_dentry_offset)
  252. offset.StructDentryNameOffset = uint32(struct_dentry_name_offset)
  253. offset.StructSockFamilyOffset = uint32(struct_sock_family_offset)
  254. offset.StructSockSaddrOffset = uint32(struct_sock_saddr_offset)
  255. offset.StructSockDaddrOffset = uint32(struct_sock_daddr_offset)
  256. offset.StructSockIp6saddrOffset = uint32(struct_sock_ip6saddr_offset)
  257. offset.StructSockIp6daddrOffset = uint32(struct_sock_ip6daddr_offset)
  258. offset.StructSockDportOffset = uint32(struct_sock_dport_offset)
  259. offset.StructSockSportOffset = uint32(struct_sock_sport_offset)
  260. offset.StructSockSkcStateOffset = uint32(struct_sock_skc_state_offset)
  261. offset.StructSockCommonIpv6onlyOffset = uint32(struct_sock_common_ipv6only_offset)
  262. if update_offsets_table(collectionSpec, opts, offset) != ETR_OK {
  263. return ETR_UPDATE_MAP_FAILD
  264. }
  265. return ETR_OK
  266. }
  267. func update_offset_map_default(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions) int {
  268. offset := bpfOffsetParam{}
  269. offset.StructFilesStructFdtOffset = 0x20
  270. offset.StructFilesPrivateDataOffset = 0xc8
  271. offset.StructFileFInodeOffset = 0x20
  272. offset.StructInodeIModeOffset = 0x00
  273. offset.StructFileDentryOffset = 0x18
  274. offset.StructDentryNameOffset = 0x28
  275. offset.StructSockFamilyOffset = 0x10
  276. offset.StructSockSaddrOffset = 0x4
  277. offset.StructSockDaddrOffset = 0x0
  278. offset.StructSockIp6saddrOffset = 0x48
  279. offset.StructSockIp6daddrOffset = 0x38
  280. offset.StructSockDportOffset = 0xc
  281. offset.StructSockSportOffset = 0xe
  282. offset.StructSockSkcStateOffset = 0x12
  283. offset.StructSockCommonIpv6onlyOffset = 0x13
  284. if update_offsets_table(collectionSpec, opts, offset) != ETR_OK {
  285. return ETR_UPDATE_MAP_FAILD
  286. }
  287. return ETR_OK
  288. }
  289. func update_offsets_table(collectionSpec *ebpf.CollectionSpec, opts *ebpf.CollectionOptions, offset bpfOffsetParam) int {
  290. numCPU := runtime.NumCPU()
  291. offsetData := make([]any, numCPU)
  292. for i := range offsetData {
  293. offsetData[i] = offset
  294. }
  295. if bpf_table_pre_set_value(collectionSpec, opts, MAP_MEMBERS_OFFSET_NAME, offsetData) != ETR_OK {
  296. return ETR_UPDATE_MAP_FAILD
  297. }
  298. return ETR_OK
  299. }
  300. func SetConstants(collectionSpec *ebpf.CollectionSpec) {
  301. // nCPU, err := utils.GetCPUCount()
  302. // consts := map[string]interface{}{
  303. // TODO go Process
  304. // "buckets_ptr_pos": int64(16),
  305. // "ctx_ptr_pos": int64(232),
  306. // "headers_ptr_pos": int64(56),
  307. // "request_host_pos": int64(128),
  308. // "is_registers_abi": true,
  309. // "method_ptr_pos": int64(0),
  310. // "path_ptr_pos": int64(56),
  311. // "status_code_pos": int64(120),
  312. // "url_ptr_pos": int64(16),
  313. // TODO 全局 ***
  314. // "total_cpus": int64(nCPU),
  315. //"apm_app_id": int64(0),
  316. //"apm_host_id": int64(0),
  317. // }
  318. // err = collectionSpec.RewriteConstants(consts)
  319. // if err != nil {
  320. // fmt.Println("err", err, consts)
  321. // }
  322. }