aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-06-19 02:58:12 +0000
committerterminaldweller <thabogre@gmail.com>2022-06-19 02:58:12 +0000
commit74f490ec2d1b959f2b28f8dbbd9a082af25891df (patch)
tree0c01901fc9866b89f1645541b40f7be421e050f4
parentupdates (diff)
downloadscripts-74f490ec2d1b959f2b28f8dbbd9a082af25891df.tar.gz
scripts-74f490ec2d1b959f2b28f8dbbd9a082af25891df.zip
removed
-rw-r--r--vagrant/pfsense/Vagrantfile209
-rw-r--r--vagrant/pfsense/conf/grub32
-rw-r--r--vagrant/pfsense/vm-config.yaml10
3 files changed, 0 insertions, 251 deletions
diff --git a/vagrant/pfsense/Vagrantfile b/vagrant/pfsense/Vagrantfile
deleted file mode 100644
index 26f58d1..0000000
--- a/vagrant/pfsense/Vagrantfile
+++ /dev/null
@@ -1,209 +0,0 @@
-# vi: set ft=ruby :
-# frozen_string_literal: true
-
-require 'yaml'
-
-if File.file?('vm-config.yaml')
- vm_config = YAML.load_file('vm-config.yaml')
- DPDK_VERSION = vm_config['dpdk_version']
- E1000_NIC_COUNT = vm_config['nics']['e1000']
- VIRTIO_NIC_COUNT = vm_config['nics']['virtio']
- DEMO_MOUNT_POINT = vm_config['mount_point']
- HUGETLB_2MG_COUNT = vm_config['huge2mb']
- PXB_COUNT = vm_config['pxb']
- NUMA_COUNT = vm_config['numa']
- TOTAL_MEMORY = vm_config['memory']
- VCORE_COUNT = vm_config['vcore']
-else
- # defaults
- DPDK_VERSION = '20.11.3'
- E1000_NIC_COUNT = 4
- VIRTIO_NIC_COUNT = 4
- DEMO_MOUNT_POINT = '/home/vagrant/pfsense'
- HUGETLB_2MG_COUNT = 512
- PXB_COUNT = 2
- NUMA_COUNT = 2
- TOTAL_MEMORY = 12_288
- VCORE_COUNT = 8
-end
-
-ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt'
-Vagrant.require_version '>= 2.2.6'
-Vagrant.configure('2') do |config|
- config.vm.box = 'generic/debian10'
- config.vm.box_version = '3.4.2'
- config.vm.box_check_update = false
- config.vm.synced_folder './source', DEMO_MOUNT_POINT, type: 'nfs'
- config.vm.hostname = 'pfsense'
-
- config.vm.boot_timeout = 30
- config.vm.graceful_halt_timeout = 30
-
- # CFLAGS="-I/opt/vagrant/embedded/include/ruby-3.0.0/ruby" vagrant plugin install vagrant-reload
- # CFLAGS="-I/opt/vagrant/embedded/include/ruby-3.0.0/ruby" vagrant plugin install vagrant-libvirt
- config.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }]
-
- config.vm.provider 'libvirt' do |libvirt|
- libvirt.default_prefix = 'deb10-dpdk-'
- libvirt.driver = 'kvm'
- libvirt.nested = true
- libvirt.machine_type = 'pc-q35-3.1'
- libvirt.nic_adapter_count = E1000_NIC_COUNT + VIRTIO_NIC_COUNT + 1
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: 'intel-iommu,caching-mode=on,intremap=off,pt=true'
- (0..PXB_COUNT - 1).each do |i|
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: "pxb-pcie,id=pcie.#{i + 1},bus=pcie.0,bus_nr=#{180 + i * 20},addr=#{i + 10},numa_node=#{i % NUMA_COUNT}"
- end
- (0..VIRTIO_NIC_COUNT + E1000_NIC_COUNT - 1).each do |i|
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: "ioh3420,port=0x3#{i},id=rppci.#{i},bus=pcie.#{(i / 4) + 1},chassis=#{i + 7},slot=#{i % 4},addr=0x#{i % 4}"
- end
- (0..VIRTIO_NIC_COUNT - 1).each do |i|
- libvirt.qemuargs value: '-netdev'
- libvirt.qemuargs value: "user,id=net#{i + 4}"
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: "virtio-net-pci,netdev=net#{i + 4},mac=de:ad:be:ef:00:0#{i + 4},bus=rppci.#{i},mq=on,vectors=32,status=off"
- end
- (0..E1000_NIC_COUNT - 1).each do |i|
- libvirt.qemuargs value: '-netdev'
- libvirt.qemuargs value: "user,id=net#{i}"
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: "e1000,netdev=net#{i},mac=de:ad:be:ef:00:0#{i},bus=rppci.#{i + 4}"
- end
- libvirt.qemuargs value: '-object'
- libvirt.qemuargs value: 'rng-random,id=rng0,filename=/dev/urandom'
- libvirt.qemuargs value: '-device'
- libvirt.qemuargs value: 'virtio-rng-pci,rng=rng0,bus=pcie.0'
- libvirt.qemuargs value: '-nographic'
- libvirt.qemuargs value: '-nodefaults'
- libvirt.qemuargs value: '-no-user-config'
- libvirt.qemuargs value: '-enable-kvm'
- # libvirt.qemuargs :value => "-chardev"
- # libvirt.qemuargs :value => "socket,path=/tmp/ivshmem_socket,id=ivshmem_socket"
- # libvirt.qemuargs :value => "-device"
- # libvirt.qemuargs :value => "ivshmem,chardev=ivshmem_socket,size=1m"
- libvirt.sound_type = nil
- libvirt.cpus = VCORE_COUNT
- libvirt.cputopology sockets: NUMA_COUNT.to_s, cores: (VCORE_COUNT / NUMA_COUNT).to_s, threads: '1'
- libvirt.cpu_fallback = 'forbid'
- libvirt.numa_nodes = [
- { cpus: '0-3', memory: (TOTAL_MEMORY / 2).to_s },
- { cpus: '4-7', memory: (TOTAL_MEMORY / 2).to_s }
- ]
- libvirt.random model: 'random'
- libvirt.autostart = true
- libvirt.features = %w[acpi apic]
- libvirt.channel type: 'unix', target_name: 'org.qemu.guest_agent.0', target_type: 'virtio'
- libvirt.disk_driver cache: 'writeback', io: nil, copy_on_read: 'on', discard: nil, detect_zeroes: nil
- libvirt.clock_timer name: 'hpet', present: 'yes'
- end
-
- config.vm.provision 'enable-iommu', type: 'shell', name: 'enable-iommu', privileged: true, reboot: false,
- inline: <<-SHELL
- set -ex
- cp #{DEMO_MOUNT_POINT}/conf/grub /etc/default/grub
- echo "options vfio_iommu_type1 allow_unsafe_interrupts=1" > /etc/modprobe.d/unsafe-interrupts.conf
- update-grub
- SHELL
-
- # https://github.com/vagrant-libvirt/vagrant-libvirt/issues/1366
- # https://github.com/hashicorp/vagrant/issues/11632
- config.vm.provision :reload
-
- config.vm.provision 'hugepages', type: 'shell', name: 'hugepages', privileged: true, reboot: false, reset: true,
- run: 'always', inline: <<-SHELL
- set -ex
- groupadd dpdk || true
- usermod -aG dpdk vagrant
- echo "@dpdk - memlock unlimited" >> /etc/security/limits.conf
- /usr/bin/bash -c "echo #{HUGETLB_2MG_COUNT} > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages"
- /usr/bin/bash -c "echo #{HUGETLB_2MG_COUNT} > /sys/devices/system/node/node1/hugepages/hugepages-2048kB/nr_hugepages"
- mkdir -p /dev/hugepages-2MB &&\
- mountpoint -q /dev/hugepages-2MB || mount -o pagesize=2097152 -t hugetlbfs nodev /dev/hugepages-2MB
- mkdir -p /dev/hugepages-1GB &&\
- mountpoint -q /dev/hugepages-1GB || mount -o pagesize=1073741824 -t hugetlbfs nodev /dev/hugepages-1GB
- echo "nodev /mnt/huge hugetlbfs defaults 0 0" >> /etc/fstab
- # recommended to increase limit of open files when using a lot of huge pages
- ulimit -Sn 2048
- SHELL
-
- config.vm.provision 'dpdk-install', name: 'dpdk-install', type: 'shell', privileged: false, reboot: false,
- inline: <<-SHELL
- set -ex
- sudo apt update && sudo apt upgrade -y
- sudo apt install -y build-essential
- sudo apt install -y libnuma-dev python3-pyelftools libarchive-dev libelf-dev python3 python3-pip meson ninja-build libssl-dev zlib1g-dev
- sudo apt install -y tmux vim wget universal-ctags cscope git devscripts w3m cmake gdb sshfs libhugetlbfs-bin ethtool
- cd /home/vagrant &&\
- wget -q https://fast.dpdk.org/rel/dpdk-#{DPDK_VERSION}.tar.xz &&\
- tar -xvf dpdk-#{DPDK_VERSION}.tar.xz &&\
- cd dpdk-stable-#{DPDK_VERSION} &&\
- meson build &&\
- cd build &&\
- meson configure -Dexamples=all -Duse_hpet=true -Dbuildtype=debug -Denable_trace_fp=true &&\
- ninja &&\
- ninja -t compdb &&\
- sudo ninja install &&\
- sudo ldconfig
- SHELL
-
- config.vm.provision 'dpdk-pmd', type: 'shell', name: 'dpdk-pmd', privileged: true, reboot: false, run: 'always',
- inline: <<-SHELL
- set -ex
- modprobe vfio-pci
- NICS=$(lspci -nn -D | grep -i "gigabit\ ethernet" | gawk '{sum=sum" "$1}END{print sum}')
- IFS=" ";read -ra NICS_ARRAY <<< "$NICS"
- for NIC in "${NICS_ARRAY[@]}";do
- /home/vagrant/dpdk-stable-#{DPDK_VERSION}/usertools/dpdk-devbind.py --bind vfio-pci $NIC || true
- done
- # we don't wanna blow out the one NIC that's giving us internet/ssh
- EXCLUSION_LIST=$(/sbin/ethtool -i eth0 | grep bus-info | gawk '{print $2}')
- NICS=$(lspci -nn -D | grep -v $EXCLUSION_LIST | grep -i "virtio\ network\ device" | gawk '{sum=sum" "$1}END{print sum}')
- IFS=" ";read -ra NICS_ARRAY <<< "$NICS"
- for NIC in "${NICS_ARRAY[@]}";do
- /home/vagrant/dpdk-stable-#{DPDK_VERSION}/usertools/dpdk-devbind.py --bind vfio-pci $NIC || true
- done
- # kill ASLR. we need to do this for multiprocess
- echo 0 > /proc/sys/kernel/randomize_va_space
- SHELL
-
- config.vm.provision 'dpdk-sudoless', name: 'dpdk-sudoless', type: 'shell', privileged: true, reboot: false,
- run: 'always', inline: <<-SHELL
- set -ex
- chown root:dpdk /dev/hpet
- chown -R root:dpdk /dev/vfio
- chmod 660 /dev/hpet
- chmod 770 /dev/vfio
- chmod 660 /dev/vfio/*
- chmod 770 /dev/hugepages-1GB
- chown root:dpdk /dev/hugepages-1GB
- chmod 770 /dev/hugepages-2MB
- chown root:dpdk /dev/hugepages-2MB
- SHELL
-
- config.vm.provision 'dpdk-test', type: 'shell', name: 'dpdk-test', privileged: false, reboot: false, run: 'never',
- inline: <<-SHELL
- set -ex
- cd /home/vagrant/dpdk-stable-#{DPDK_VERSION}/build &&\
- sudo meson test --suite fast-tests --timeout 100
- cd /home/vagrant/dpdk-stable-#{DPDK_VERSION}/build &&\
- meson test --suite driver-tests
- /home/vagrant/dpdk-stable-#{DPDK_VERSION}/build/app/test/dpdk-test -n2 -l4 --vfio-int=legacy --huge-dir=/dev/hugepages-2MB --allow 0000:00:03.0 --allow 0000:00:04.0
- make -C /home/vagrant/dpdk-stable-#{DPDK_VERSION}/examples/helloworld &&\
- /home/vagra/tdpdk-stable-#{DPDK_VERSION}/examples/helloworld/build/helloworld
- /home/vagra/tdpdk-stable-#{DPDK_VERSION}/build/app/dpdk-testpmd -l 0-3 -n 4 --vfio-int=legacy -- -i
- make -C /home/vagrant/dpdk-stable-#{DPDK_VERSION}/examples/skeleton &&\
- /home/vagra/tdpdk-stable-#{DPDK_VERSION}/examples/skeleton/build/basicfwd -l1 -n4 --vfio-int=legacy
- SHELL
-
- if ARGV[0] == '--farzad'
- config.vm.provision 'farzad', type: 'shell', name: 'farzad', privileged: false, reboot: false, reset: true,
- inline: <<-SHELL
- set -ex
- sudo apt install -y apt-file hwloc numactl strace ltrace babeltrace htop
- sudo apt-file update
- echo "set -o vi" >> ~/.bashrc
- SHELL
- end
-end
diff --git a/vagrant/pfsense/conf/grub b/vagrant/pfsense/conf/grub
deleted file mode 100644
index 90316e4..0000000
--- a/vagrant/pfsense/conf/grub
+++ /dev/null
@@ -1,32 +0,0 @@
-# If you change this file, run 'update-grub' afterwards to update
-# /boot/grub/grub.cfg.
-# For full documentation of the options in this file, see:
-# info -f grub -n 'Simple configuration'
-
-GRUB_DEFAULT=0
-GRUB_TIMEOUT=5
-GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
-GRUB_CMDLINE_LINUX_DEFAULT="quiet"
-GRUB_CMDLINE_LINUX="ipv6.disable_ipv6=1 net.ifnames=0 biosdevname=0 net.ifnames=0 biosdevname=0 iommu=pt intel_iommu=on hugepagesz=1G hugepages=2 hpet_mmap=1"
-
-# Uncomment to enable BadRAM filtering, modify to suit your needs
-# This works with Linux (no patch required) and with any kernel that obtains
-# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
-#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
-
-# Uncomment to disable graphical terminal (grub-pc only)
-#GRUB_TERMINAL=console
-
-# The resolution used on graphical terminal
-# note that you can use only modes which your graphic card supports via VBE
-# you can see them in real GRUB with the command `vbeinfo'
-#GRUB_GFXMODE=640x480
-
-# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
-#GRUB_DISABLE_LINUX_UUID=true
-
-# Uncomment to disable generation of recovery mode menu entries
-#GRUB_DISABLE_RECOVERY="true"
-
-# Uncomment to get a beep at grub start
-#GRUB_INIT_TUNE="480 440 1"
diff --git a/vagrant/pfsense/vm-config.yaml b/vagrant/pfsense/vm-config.yaml
deleted file mode 100644
index 579170f..0000000
--- a/vagrant/pfsense/vm-config.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-nics:
- e1000: 4
- virtio: 4
-vcore: 8
-numa: 2
-memory: 12288
-huge2mb: 512
-pxb: 2
-mount_point: "/home/vagrant/pfsense"
-dpdk_version: "20.11.3"