当前位置:首页 > 编程笔记 > 正文
已解决

09 用户态跟踪:如何使用eBPF排查应用程序?

来自网友在路上 162862提问 提问时间:2023-10-30 14:02:19阅读次数: 62

最佳答案 问答题库628位专家为你答疑解惑

09  用户态跟踪:如何使用eBPF排查应用程序?

sudo bpftrace -e 'usdt:/usr/bin/python3:function__entry { printf("%s:%d %s\n", str(arg0), arg2, str(arg1))}'

# -*- coding: UTF-8 -*-

import socket
from socket import SOL_SOCKET, SO_REUSEADDR
import subprocess
import struct
import json

PORT = 18284

#简单TCP通信
def main():
    tcpSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    print(tcpSocket)
    tcpSocket.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)
    tcpSocket.bind(('127.0.0.1', PORT))
    tcpSocket.listen(5)
    print('start....')
    while True:
        conn, client_addr = tcpSocket.accept()
        print('new client connected ', conn, client_addr)
        while True:
            try:
                print('recv data ...')
                data = conn.recv(1024)
                if len(data) == 0:
                    break
                print('recv data is ', data)
                conn.send(data.upper())
            except ConnectionResetError:
                break

    conn.close()
    phone.close()
main()

/usr/lib/python3.9/socket.py:220 __init__
/usr/lib/python3.9/socket.py:243 __repr__
/usr/lib/python3.9/socket.py:513 family
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/socket.py:519 type
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/enum.py:740 __str__
/usr/lib/python3.9/enum.py:740 __str__
/usr/lib/python3.9/socket.py:286 accept


/usr/lib/python3.9/socket.py:513 family
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/socket.py:519 type
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/socket.py:220 __init__
/usr/lib/python3.9/socket.py:243 __repr__
/usr/lib/python3.9/socket.py:513 family
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/socket.py:519 type
/usr/lib/python3.9/socket.py:99 _intenum_converter
/usr/lib/python3.9/enum.py:358 __call__
/usr/lib/python3.9/enum.py:670 __new__
/usr/lib/python3.9/enum.py:740 __str__
/usr/lib/python3.9/enum.py:740 __str__

查看全文

99%的人还看了

猜你感兴趣

版权申明

本文"09 用户态跟踪:如何使用eBPF排查应用程序?":http://eshow365.cn/6-27846-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!