blob: 65ed486ce4f1d2d7fa4336faecf40d077d8a1252 [file] [log] [blame]
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +02001#!/bin/bash
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01002# SPDX-License-Identifier: GPL-2.0
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +02003#
4# Script example for many flows testing
5#
6# Number of simultaneous flows limited by variable $FLOWS
7# and number of packets per flow controlled by variable $FLOWLEN
8#
9basedir=`dirname $0`
10source ${basedir}/functions.sh
11root_check_run_with_sudo "$@"
12
13# Parameter parsing via include
14source ${basedir}/parameters.sh
J.J. Martzkia27ac532023-07-01 22:37:37 +080015
16# Trap EXIT first
17trap_exit
18
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020019# Set some default params, if they didn't get set
Juhee Kang0f0c4f12021-08-13 00:08:13 +090020if [ -z "$DEST_IP" ]; then
21 [ -z "$IP6" ] && DEST_IP="198.18.0.42" || DEST_IP="FD00::1"
22fi
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020023[ -z "$DST_MAC" ] && DST_MAC="90:e2:ba:ff:ff:ff"
24[ -z "$CLONE_SKB" ] && CLONE_SKB="0"
Tariq Toukan69137ea2017-06-15 19:07:21 +030025[ -z "$COUNT" ] && COUNT="0" # Zero means indefinitely
Daniel T. Lee40f843e2019-10-05 17:25:09 +090026if [ -n "$DEST_IP" ]; then
Juhee Kang0f0c4f12021-08-13 00:08:13 +090027 validate_addr${IP6} $DEST_IP
28 read -r DST_MIN DST_MAX <<< $(parse_addr${IP6} $DEST_IP)
Daniel T. Lee40f843e2019-10-05 17:25:09 +090029fi
Daniel T. Lee6e32a742019-06-29 22:33:58 +090030if [ -n "$DST_PORT" ]; then
Daniel T. Lee723d2902019-10-05 17:25:06 +090031 read -r UDP_DST_MIN UDP_DST_MAX <<< $(parse_ports $DST_PORT)
32 validate_ports $UDP_DST_MIN $UDP_DST_MAX
Daniel T. Lee6e32a742019-06-29 22:33:58 +090033fi
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020034
35# NOTICE: Script specific settings
36# =======
37# Limiting the number of concurrent flows ($FLOWS)
38# and also set how many packets each flow contains ($FLOWLEN)
39#
40[ -z "$FLOWS" ] && FLOWS="8000"
41[ -z "$FLOWLEN" ] && FLOWLEN="10"
42
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020043if [[ -n "$BURST" ]]; then
44 err 1 "Bursting not supported for this mode"
45fi
46
Daniel T. Lee40f843e2019-10-05 17:25:09 +090047# 198.18.0.0 / 198.19.255.255
48read -r SRC_MIN SRC_MAX <<< $(parse_addr 198.18.0.0/15)
49
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020050# General cleanup everything since last run
Igor Russkikhc8fd4852021-03-11 11:32:53 +010051[ -z "$APPEND" ] && pg_ctrl "reset"
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020052
53# Threads are specified with parameter -t value in $THREADS
Tariq Toukane0e16672017-06-15 19:07:22 +030054for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020055 dev=${DEV}@${thread}
56
57 # Add remove all other devices and add_device $dev to thread
Igor Russkikhc8fd4852021-03-11 11:32:53 +010058 [ -z "$APPEND" ] && pg_thread $thread "rem_device_all"
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020059 pg_thread $thread "add_device" $dev
60
61 # Base config
62 pg_set $dev "flag QUEUE_MAP_CPU"
63 pg_set $dev "count $COUNT"
64 pg_set $dev "clone_skb $CLONE_SKB"
65 pg_set $dev "pkt_size $PKT_SIZE"
66 pg_set $dev "delay $DELAY"
67 pg_set $dev "flag NO_TIMESTAMP"
68
69 # Single destination
70 pg_set $dev "dst_mac $DST_MAC"
Juhee Kang0f0c4f12021-08-13 00:08:13 +090071 pg_set $dev "dst${IP6}_min $DST_MIN"
72 pg_set $dev "dst${IP6}_max $DST_MAX"
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020073
Daniel T. Lee6e32a742019-06-29 22:33:58 +090074 if [ -n "$DST_PORT" ]; then
75 # Single destination port or random port range
76 pg_set $dev "flag UDPDST_RND"
Daniel T. Lee723d2902019-10-05 17:25:06 +090077 pg_set $dev "udp_dst_min $UDP_DST_MIN"
78 pg_set $dev "udp_dst_max $UDP_DST_MAX"
Daniel T. Lee6e32a742019-06-29 22:33:58 +090079 fi
80
Lorenzo Bianconi460a9aa2021-05-28 16:06:35 +020081 [ ! -z "$UDP_CSUM" ] && pg_set $dev "flag UDPCSUM"
82
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020083 # Randomize source IP-addresses
84 pg_set $dev "flag IPSRC_RND"
Daniel T. Lee40f843e2019-10-05 17:25:09 +090085 pg_set $dev "src_min $SRC_MIN"
86 pg_set $dev "src_max $SRC_MAX"
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +020087
88 # Limit number of flows (max 65535)
89 pg_set $dev "flows $FLOWS"
90 #
91 # How many packets a flow will send, before flow "entry" is
92 # re-generated/setup.
93 pg_set $dev "flowlen $FLOWLEN"
94 #
95 # Flag FLOW_SEQ will cause $FLOWLEN packets from the same flow
96 # being send back-to-back, before next flow is selected
97 # incrementally. This helps lookup caches, and is more realistic.
98 #
99 pg_set $dev "flag FLOW_SEQ"
100
101done
102
103# Run if user hits control-c
104function print_result() {
105 # Print results
Tariq Toukane0e16672017-06-15 19:07:22 +0300106 for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +0200107 dev=${DEV}@${thread}
108 echo "Device: $dev"
109 cat /proc/net/pktgen/$dev | grep -A2 "Result:"
110 done
111}
112# trap keyboard interrupt (Ctrl-C)
113trap true SIGINT
114
Igor Russkikhc8fd4852021-03-11 11:32:53 +0100115if [ -z "$APPEND" ]; then
116 echo "Running... ctrl^C to stop" >&2
117 pg_ctrl "start"
Jesper Dangaard Brouer15f2cbb2016-07-13 22:06:04 +0200118
Igor Russkikhc8fd4852021-03-11 11:32:53 +0100119 print_result
120else
121 echo "Append mode: config done. Do more or use 'pg_ctrl start' to run"
122fi