mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 01:45:23 +07:00
d6d4f60c3a
Added a selftest for tcpbpf (sock_ops) that checks that the appropriate callbacks occured and that it can access tcp_sock fields and that their values are correct. Run with command: ./test_tcpbpf_user Adding the flag "-d" will show why it did not pass. Signed-off-by: Lawrence Brakmo <brakmo@fb.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
52 lines
933 B
Python
Executable File
52 lines
933 B
Python
Executable File
#!/usr/bin/env python2
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
|
|
import sys, os, os.path, getopt
|
|
import socket, time
|
|
import subprocess
|
|
import select
|
|
|
|
def read(sock, n):
|
|
buf = ''
|
|
while len(buf) < n:
|
|
rem = n - len(buf)
|
|
try: s = sock.recv(rem)
|
|
except (socket.error), e: return ''
|
|
buf += s
|
|
return buf
|
|
|
|
def send(sock, s):
|
|
total = len(s)
|
|
count = 0
|
|
while count < total:
|
|
try: n = sock.send(s)
|
|
except (socket.error), e: n = 0
|
|
if n == 0:
|
|
return count;
|
|
count += n
|
|
return count
|
|
|
|
|
|
serverPort = int(sys.argv[1])
|
|
HostName = socket.gethostname()
|
|
|
|
# create active socket
|
|
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
|
|
try:
|
|
sock.connect((HostName, serverPort))
|
|
except socket.error as e:
|
|
sys.exit(1)
|
|
|
|
buf = ''
|
|
n = 0
|
|
while n < 1000:
|
|
buf += '+'
|
|
n += 1
|
|
|
|
sock.settimeout(1);
|
|
n = send(sock, buf)
|
|
n = read(sock, 500)
|
|
sys.exit(0)
|