2 # Common functions used by pktgen scripts
3 # - Depending on bash 3 (or higher) syntax
5 # Author: Jesper Dangaaard Brouer
8 ## -- General shell logging cmds --
21 if [[ -n "$VERBOSE" ]]; then
26 ## -- Pktgen proc config commands -- ##
27 export PROC_DIR
=/proc
/net
/pktgen
29 # Three different shell functions for configuring the different
30 # components of pktgen:
31 # pg_ctrl(), pg_thread() and pg_set().
33 # These functions correspond to pktgens different components.
34 # * pg_ctrl() control "pgctrl" (/proc/net/pktgen/pgctrl)
35 # * pg_thread() control the kernel threads and binding to devices
36 # * pg_set() control setup of individual devices
38 local proc_file
="pgctrl"
39 proc_cmd
${proc_file} "$@"
42 function pg_thread
() {
44 local proc_file
="kpktgend_${thread}"
46 proc_cmd
${proc_file} "$@"
51 local proc_file
="$dev"
53 proc_cmd
${proc_file} "$@"
56 # More generic replacement for pgset(), that does not depend on global
57 # variable for proc file.
61 # after shift, the remaining args are contained in $@
63 local proc_ctrl
=${PROC_DIR}/$proc_file
64 if [[ ! -e "$proc_ctrl" ]]; then
65 err
3 "proc file:$proc_ctrl does not exists (dev added to thread?)"
67 if [[ ! -w "$proc_ctrl" ]]; then
68 err
4 "proc file:$proc_ctrl not writable, not root?!"
72 if [[ "$DEBUG" == "yes" ]]; then
73 echo "cmd: $@ > $proc_ctrl"
75 # Quoting of "$@" is important for space expansion
76 echo "$@" > "$proc_ctrl"
79 result
=$
(grep "Result: OK:" $proc_ctrl)
80 # Due to pgctrl, cannot use exit code $? from grep
81 if [[ "$result" == "" ]]; then
82 grep "Result:" $proc_ctrl >&2
84 if (( $status != 0 )); then
85 err
5 "Write error($status) occurred cmd: \"$@ > $proc_ctrl\""
89 # Old obsolete "pgset" function, with slightly improved err handling
93 if [[ "$DEBUG" == "yes" ]]; then
94 echo "cmd: $1 > $PGDEV"
99 result
=`cat $PGDEV | fgrep "Result: OK:"`
100 if [[ "$result" == "" ]]; then
101 cat $PGDEV | fgrep Result
:
103 if (( $status != 0 )); then
104 err
5 "Write error($status) occurred cmd: \"$1 > $PGDEV\""
108 ## -- General shell tricks --
110 function root_check_run_with_sudo
() {
111 # Trick so, program can be run as normal user, will just use "sudo"
112 # call as root_check_run_as_sudo "$@"
113 if [ "$EUID" -ne 0 ]; then
114 if [ -x $0 ]; then # Directly executable use sudo
115 info
"Not root, running with sudo"
119 err
4 "cannot perform sudo run of $0"