pktgen_sample02_multiqueue.sh 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #!/bin/bash
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # Multiqueue: Using pktgen threads for sending on multiple CPUs
  5. # * adding devices to kernel threads
  6. # * notice the naming scheme for keeping device names unique
  7. # * nameing scheme: dev@thread_number
  8. # * flow variation via random UDP source port
  9. #
  10. basedir=`dirname $0`
  11. source ${basedir}/functions.sh
  12. root_check_run_with_sudo "$@"
  13. #
  14. # Required param: -i dev in $DEV
  15. source ${basedir}/parameters.sh
  16. [ -z "$COUNT" ] && COUNT="100000" # Zero means indefinitely
  17. # Base Config
  18. [ -z "$CLONE_SKB" ] && CLONE_SKB="0"
  19. # Flow variation random source port between min and max
  20. UDP_SRC_MIN=9
  21. UDP_SRC_MAX=109
  22. # (example of setting default params in your script)
  23. if [ -z "$DEST_IP" ]; then
  24. [ -z "$IP6" ] && DEST_IP="198.18.0.42" || DEST_IP="FD00::1"
  25. fi
  26. [ -z "$DST_MAC" ] && DST_MAC="90:e2:ba:ff:ff:ff"
  27. if [ -n "$DEST_IP" ]; then
  28. validate_addr${IP6} $DEST_IP
  29. read -r DST_MIN DST_MAX <<< $(parse_addr${IP6} $DEST_IP)
  30. fi
  31. if [ -n "$DST_PORT" ]; then
  32. read -r UDP_DST_MIN UDP_DST_MAX <<< $(parse_ports $DST_PORT)
  33. validate_ports $UDP_DST_MIN $UDP_DST_MAX
  34. fi
  35. # General cleanup everything since last run
  36. [ -z "$APPEND" ] && pg_ctrl "reset"
  37. # Threads are specified with parameter -t value in $THREADS
  38. for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
  39. # The device name is extended with @name, using thread number to
  40. # make then unique, but any name will do.
  41. dev=${DEV}@${thread}
  42. # Add remove all other devices and add_device $dev to thread
  43. [ -z "$APPEND" ] && pg_thread $thread "rem_device_all"
  44. pg_thread $thread "add_device" $dev
  45. # Notice config queue to map to cpu (mirrors smp_processor_id())
  46. # It is beneficial to map IRQ /proc/irq/*/smp_affinity 1:1 to CPU number
  47. pg_set $dev "flag QUEUE_MAP_CPU"
  48. # Base config of dev
  49. pg_set $dev "count $COUNT"
  50. pg_set $dev "clone_skb $CLONE_SKB"
  51. pg_set $dev "pkt_size $PKT_SIZE"
  52. pg_set $dev "delay $DELAY"
  53. # Flag example disabling timestamping
  54. pg_set $dev "flag NO_TIMESTAMP"
  55. # Destination
  56. pg_set $dev "dst_mac $DST_MAC"
  57. pg_set $dev "dst${IP6}_min $DST_MIN"
  58. pg_set $dev "dst${IP6}_max $DST_MAX"
  59. if [ -n "$DST_PORT" ]; then
  60. # Single destination port or random port range
  61. pg_set $dev "flag UDPDST_RND"
  62. pg_set $dev "udp_dst_min $UDP_DST_MIN"
  63. pg_set $dev "udp_dst_max $UDP_DST_MAX"
  64. fi
  65. [ ! -z "$UDP_CSUM" ] && pg_set $dev "flag UDPCSUM"
  66. # Setup random UDP port src range
  67. pg_set $dev "flag UDPSRC_RND"
  68. pg_set $dev "udp_src_min $UDP_SRC_MIN"
  69. pg_set $dev "udp_src_max $UDP_SRC_MAX"
  70. done
  71. # Run if user hits control-c
  72. function print_result() {
  73. # Print results
  74. for ((thread = $F_THREAD; thread <= $L_THREAD; thread++)); do
  75. dev=${DEV}@${thread}
  76. echo "Device: $dev"
  77. cat /proc/net/pktgen/$dev | grep -A2 "Result:"
  78. done
  79. }
  80. # trap keyboard interrupt (Ctrl-C)
  81. trap true SIGINT
  82. if [ -z "$APPEND" ]; then
  83. # start_run
  84. echo "Running... ctrl^C to stop" >&2
  85. pg_ctrl "start"
  86. echo "Done" >&2
  87. print_result
  88. else
  89. echo "Append mode: config done. Do more or use 'pg_ctrl start' to run"
  90. fi