forked from cyz14/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
110 lines (96 loc) · 4.65 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# -*- mode: ruby -*-
# Vagrant file API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
['vagrant-reload', 'vagrant-disksize'].each do |plugin|
unless Vagrant.has_plugin?(plugin)
raise "Vagrant plugin #{plugin} is not installed!"
end
end
def path_exists?(path)
File.directory?(path)
end
$dimage = ENV.fetch("DIMAGE", "netbricks")
$dtag = ENV.fetch("DTAG", "latest")
$dproject = ENV.fetch("DPROJECT", "williamofockham")
$nbpath = ENV.fetch("NBPATH", "../NetBricks")
$mgpath = ENV.fetch("MGPATH", "../MoonGen")
$extra_mount_sync_path = ENV.fetch("EXTRA_MOUNT_SYNC_PATH", "/williamofockham")
$extra_mount_local_path = ENV.fetch("EXTRA_MOUNT_LOCAL_PATH", "../../williamofockham")
$dpdk_driver = ENV.fetch("DPDK_DRIVER", "uio_pci_generic")
$dpdk_devices = ENV.fetch("DPDK_DEVICES", "0000:00:08.0 0000:00:09.0")
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at https://docs.vagrantup.com.
config.vm.box = "ubuntu/xenial64"
config.disksize.size = "30GB"
# e.g. for wireshark forwarding
config.ssh.forward_x11 = true
config.ssh.forward_agent = true
if path_exists?($extra_mount_local_path)
config.vm.synced_folder $extra_mount_local_path, $extra_mount_sync_path, disabled: false
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.provision "shell", inline: "echo 'cd '" + $extra_mount_sync_path + " >> /home/vagrant/.bashrc", run: "always"
else
config.vm.synced_folder ".", "/vagrant", disabled: false
if path_exists?($nbpath)
config.vm.synced_folder $nbpath, "/netbricks", disabled: false
end
if path_exists?($mgpath)
config.vm.synced_folder $mgpath, "/moongen", disabled: false
end
config.vm.provision "shell", inline: "echo 'cd /vagrant' >> /home/vagrant/.bashrc", run: "always"
end
# specific IP. This option is needed because DPDK takes over the NIC.
config.vm.network "private_network", ip: "10.1.2.2", mac: "BADCAFEBEEF1", nic_type: "virtio"
config.vm.network "private_network", ip: "10.1.2.3", mac: "BADCAFEBEEF2", nic_type: "virtio"
config.vm.network "private_network", ip: "fe80::b8dc:afff:feeb:eef3", mac: "BADCAFEBEEF3"
config.vm.network "private_network", ip: "fe80::b8dc:afff:feeb:eef4", mac: "BADCAFEBEEF4"
# Setup the VM for DPDK, including binding the extra interface via the fetched
# container
config.vm.provision "shell", path: "vm-kernel-upgrade.sh"
config.vm.provision "reload"
config.vm.provision "shell", path: "vm-setup.sh"
# Pull and run (then remove) our image in order to do the devbind
config.vm.provision "docker" do |d|
d.pull_images "#{$dproject}/#{$dimage}:#{$dtag}"
d.pull_images "zlim/bcc:xenial"
d.run "#{$dproject}/#{$dimage}:#{$dtag}",
auto_assign_name: false,
args: %W(--name=#{$dimage}
--rm
--privileged
--pid=host
--network=host
-v /lib/modules:/lib/modules
-v /usr/src:/usr/src
-v /sys/bus/pci/drivers:/sys/bus/pci/drivers
-v /sys/kernel/mm/hugepages:/sys/kernel/mm/hugepages
-v /sys/devices/system/node:/sys/devices/system/node
-v /sbin/modinfo:/sbin/modinfo
-v /bin/kmod:/bin/kmod
-v /sbin/lsmod:/sbin/lsmod
-v /dev:/dev
-v /mnt/huge:/mnt/huge
-v /var/run:/var/run).join(" "),
restart: "no",
daemonize: true,
cmd: "/bin/bash -c '/dpdk/usertools/dpdk-devbind.py --force -b #{$dpdk_driver} #{$dpdk_devices}'"
end
# VirtualBox-specific configuration
config.vm.provider "virtualbox" do |vb|
# Set machine name, memory and CPU limits
vb.name = "ubuntu-xenial-williamofockham"
vb.memory = 4096
vb.cpus = 4
# Configure VirtualBox to enable passthrough of SSE 4.1 and SSE 4.2 instructions,
# according to this: https://www.virtualbox.org/manual/ch09.html#sse412passthrough
# This step is fundamental otherwise DPDK won't build. It is possible to verify in
# the guest OS that these changes took effect by running `cat /proc/cpuinfo` and
# checking that `sse4_1` and `sse4_2` are listed among the CPU flags.
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"]
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"]
# Allow promiscuous mode for host-only adapter
vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
end
end