2020-09-30 11:40:14 +00:00
|
|
|
#! /usr/bin/env python3
|
2020-04-30 16:01:28 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2020 Intel Corporation
|
|
|
|
|
|
|
|
"""
|
|
|
|
Script to be used with V2 Telemetry.
|
|
|
|
Allows the user input commands and read the Telemetry response.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import socket
|
|
|
|
import os
|
2021-09-13 10:51:37 +00:00
|
|
|
import sys
|
2020-04-30 16:01:28 +00:00
|
|
|
import json
|
2021-02-16 11:39:21 +00:00
|
|
|
import errno
|
2020-04-30 16:01:28 +00:00
|
|
|
import readline
|
2021-02-16 11:50:08 +00:00
|
|
|
import argparse
|
2020-04-30 16:01:28 +00:00
|
|
|
|
|
|
|
# global vars
|
|
|
|
TELEMETRY_VERSION = "v2"
|
|
|
|
CMDS = []
|
|
|
|
|
|
|
|
|
|
|
|
def read_socket(sock, buf_len, echo=True):
|
|
|
|
""" Read data from socket and return it in JSON format """
|
|
|
|
reply = sock.recv(buf_len).decode()
|
|
|
|
try:
|
|
|
|
ret = json.loads(reply)
|
|
|
|
except json.JSONDecodeError:
|
|
|
|
print("Error in reply: ", reply)
|
|
|
|
sock.close()
|
|
|
|
raise
|
|
|
|
if echo:
|
|
|
|
print(json.dumps(ret))
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2021-02-16 11:39:21 +00:00
|
|
|
def get_app_name(pid):
|
|
|
|
""" return the app name for a given PID, for printing """
|
|
|
|
proc_cmdline = os.path.join('/proc', str(pid), 'cmdline')
|
|
|
|
try:
|
|
|
|
with open(proc_cmdline) as f:
|
|
|
|
argv0 = f.read(1024).split('\0')[0]
|
|
|
|
return os.path.basename(argv0)
|
|
|
|
except IOError as e:
|
|
|
|
# ignore file not found errors
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2020-04-30 16:01:28 +00:00
|
|
|
def handle_socket(path):
|
|
|
|
""" Connect to socket and handle user input """
|
2021-09-13 10:51:37 +00:00
|
|
|
prompt = '' # this evaluates to false in conditions
|
2020-04-30 16:01:28 +00:00
|
|
|
sock = socket.socket(socket.AF_UNIX, socket.SOCK_SEQPACKET)
|
|
|
|
global CMDS
|
2021-09-13 10:51:37 +00:00
|
|
|
|
|
|
|
if os.isatty(sys.stdin.fileno()):
|
|
|
|
prompt = '--> '
|
|
|
|
print("Connecting to " + path)
|
2020-04-30 16:01:28 +00:00
|
|
|
try:
|
|
|
|
sock.connect(path)
|
|
|
|
except OSError:
|
|
|
|
print("Error connecting to " + path)
|
|
|
|
sock.close()
|
|
|
|
return
|
2021-09-13 10:51:37 +00:00
|
|
|
json_reply = read_socket(sock, 1024, prompt)
|
2020-04-30 16:01:28 +00:00
|
|
|
output_buf_len = json_reply["max_output_len"]
|
2021-02-16 11:39:21 +00:00
|
|
|
app_name = get_app_name(json_reply["pid"])
|
2021-09-13 10:51:37 +00:00
|
|
|
if app_name and prompt:
|
2021-02-16 11:39:21 +00:00
|
|
|
print('Connected to application: "%s"' % app_name)
|
2020-04-30 16:01:28 +00:00
|
|
|
|
|
|
|
# get list of commands for readline completion
|
|
|
|
sock.send("/".encode())
|
|
|
|
CMDS = read_socket(sock, output_buf_len, False)["/"]
|
|
|
|
|
|
|
|
# interactive prompt
|
2021-09-13 10:51:36 +00:00
|
|
|
try:
|
2021-09-13 10:51:37 +00:00
|
|
|
text = input(prompt).strip()
|
2021-09-13 10:51:36 +00:00
|
|
|
while text != "quit":
|
|
|
|
if text.startswith('/'):
|
|
|
|
sock.send(text.encode())
|
|
|
|
read_socket(sock, output_buf_len)
|
2021-09-13 10:51:37 +00:00
|
|
|
text = input(prompt).strip()
|
2021-09-13 10:51:36 +00:00
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
sock.close()
|
2020-04-30 16:01:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def readline_complete(text, state):
|
|
|
|
""" Find any matching commands from the list based on user input """
|
|
|
|
all_cmds = ['quit'] + CMDS
|
|
|
|
if text:
|
|
|
|
matches = [c for c in all_cmds if c.startswith(text)]
|
|
|
|
else:
|
|
|
|
matches = all_cmds
|
|
|
|
return matches[state]
|
|
|
|
|
|
|
|
|
2021-02-16 11:50:08 +00:00
|
|
|
def get_dpdk_runtime_dir(fp):
|
|
|
|
""" Using the same logic as in DPDK's EAL, get the DPDK runtime directory
|
|
|
|
based on the file-prefix and user """
|
|
|
|
if (os.getuid() == 0):
|
|
|
|
return os.path.join('/var/run/dpdk', fp)
|
|
|
|
return os.path.join(os.environ.get('XDG_RUNTIME_DIR', '/tmp'), 'dpdk', fp)
|
|
|
|
|
|
|
|
|
2020-04-30 16:01:28 +00:00
|
|
|
readline.parse_and_bind('tab: complete')
|
|
|
|
readline.set_completer(readline_complete)
|
|
|
|
readline.set_completer_delims(readline.get_completer_delims().replace('/', ''))
|
|
|
|
|
2021-02-16 11:50:08 +00:00
|
|
|
parser = argparse.ArgumentParser()
|
2021-09-13 10:51:35 +00:00
|
|
|
parser.add_argument('-f', '--file-prefix', default='rte',
|
|
|
|
help='Provide file-prefix for DPDK runtime directory')
|
2021-10-14 10:49:06 +00:00
|
|
|
parser.add_argument('-i', '--instance', default='0', type=int,
|
|
|
|
help='Provide file-prefix for DPDK runtime directory')
|
2021-02-16 11:50:08 +00:00
|
|
|
args = parser.parse_args()
|
2021-09-13 10:51:35 +00:00
|
|
|
rd = get_dpdk_runtime_dir(args.file_prefix)
|
2021-10-14 10:49:06 +00:00
|
|
|
sock_path = os.path.join(rd, 'dpdk_telemetry.{}'.format(TELEMETRY_VERSION))
|
|
|
|
if args.instance > 0:
|
|
|
|
sock_path += ":{}".format(args.instance)
|
|
|
|
handle_socket(sock_path)
|