summaryrefslogtreecommitdiffstats
path: root/vagrant/Vagrantfile
blob: 7b72c87cebfe471b0a40a0dd7d8e1a71a992d8d5 (plain)
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
111
112
113
114
115
116
117
118
119
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure(2) do |config|

  config.ssh.forward_x11 = true

  if ENV.key?('VAGRANT_VM_NAME')
    vagrant_vm_name = ENV['VAGRANT_VM_NAME']
  else
    vagrant_vm_name = ""
  end

  if ENV.key?('KARAF_PACKAGES')
    config.vm.synced_folder ENV['KARAF_PACKAGES'], "/karaf-packages", disabled: false
  end

  # If specified, add a private network interface for the ODL VBD app
  # to communicate with VPP Honeycomb agents.  VPP is not installed
  # in an ODL VDB application VM.
  if ENV.key?('VAGRANT_VBD_VM')
    vagrant_vbd_vm = "is_vbd_vm"
    if ENV.key?('VAGRANT_VBD_ADDR')
      config.vm.network "private_network", ip: ENV['VAGRANT_VBD_ADDR']
    end
    vagrant_vpp_agent_addr = ""

  else
    vagrant_vbd_vm = "is_vpp_agent_vm"
    
    if ENV.key?('VAGRANT_VPP_AGENT_ADDR')
      vagrant_vpp_agent_addr = ENV['VAGRANT_VPP_AGENT_ADDR']
      config.vm.network "private_network", ip: "#{vagrant_vpp_agent_addr}"
    else
      vagrant_vpp_agent_addr = ""
    end

    # Define some physical ports for your VMs to be used by DPDK
    nics = 0
    if ENV.key?('VPP_VAGRANT_NICS')
      nics = ENV['VPP_VAGRANT_NICS'].to_i(10)
    end
    for i in 1..nics
      config.vm.network "private_network", type: "dhcp"
    end
    # Mount VPP repository if specified
    if ENV.key?('VPP_REPO')
      config.vm.synced_folder ENV['VPP_REPO'], "/vpp", disabled: false
    end
  end

  # Pick the right distro and bootstrap, default is ubuntu1404
  distro = ENV['HONEYCOMB_VAGRANT_DISTRO']
  if distro == 'centos7'
    config.vm.box = "puppetlabs/centos-7.0-64-nocm"
    config.vm.provision 'shell' do |s|
      s.path = "bootstrap.centos7.sh"
      s.args = ["#{vagrant_vm_name}", "#{vagrant_vbd_vm}", "#{vagrant_vpp_agent_addr}"]
    end
  else
    config.vm.box = "puppetlabs/ubuntu-14.04-64-nocm"
    config.vm.provision 'shell' do |s|
      s.path = "bootstrap.ubuntu1404.sh"
      s.args = ["#{vagrant_vm_name}", "#{vagrant_vbd_vm}", "#{vagrant_vpp_agent_addr}"]
    end
  end

  # Add .gnupg dir in so folks can sign patches
  # Note, as gnupg puts socket files in that dir, we have
  # to be cautious and make sure we are dealing with a plain file
  homedir = File.expand_path("~/")
  Dir["#{homedir}/.gnupg/**/*"].each do |fname|
    if File.file?(fname)
      destname = fname.sub(Regexp.escape("#{homedir}/"),'')
      config.vm.provision "file", source: fname, destination: destname
    end
  end

  # Copy in the .gitconfig if it exists
  if File.file?(File.expand_path("~/.gitconfig"))
    config.vm.provision  "file", source: "~/.gitconfig", destination: ".gitconfig"
  end

  # vagrant-cachier caches apt/yum etc to speed subsequent
  # vagrant up
  # to enable, run
  # vagrant plugin install vagrant-cachier
  #
  if Vagrant.has_plugin?("vagrant-cachier")
    config.cache.scope = :box
  end

  # use http proxy if available
  if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf")
   config.proxy.http     = "$http_proxy"
   config.proxy.https    = "$https_proxy"
   config.proxy.no_proxy = "localhost,127.0.0.1"
  end

  # Mount Maven repository if specified
  if ENV.key?('HONEYCOMB_M2_REPO')
    config.vm.synced_folder ENV['HONEYCOMB_M2_REPO'], "/m2-repository", disabled: false
  end

  # Mount Honeycomb repository
  config.vm.synced_folder "../", "/honeycomb", disabled: false

  # Memory/cpu config
  config.vm.provider "virtualbox" do |vb|
    vb.memory = "4096"
  end
  config.vm.provider "vmware_fusion" do |fusion,override|
    fusion.vmx["memsize"] = "4096"
  end
  config.vm.provider "vmware_workstation" do |vws,override|
    vws.vmx["memsize"] = "8192"
    vws.vmx["numvcpus"] = "4"
  end
end
to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <vnet/vnet.h> #include <vnet/ip/lookup.h> u8 * format_vnet_rewrite (u8 * s, va_list * args) { vnet_rewrite_header_t *rw = va_arg (*args, vnet_rewrite_header_t *); u32 max_data_bytes = va_arg (*args, u32); CLIB_UNUSED (u32 indent) = va_arg (*args, u32); vnet_main_t *vnm = vnet_get_main (); ASSERT (rw->data_bytes <= max_data_bytes); if (rw->sw_if_index != ~0) { vnet_sw_interface_t *si; si = vnet_get_sw_interface_or_null (vnm, rw->sw_if_index); if (NULL != si) s = format (s, "%U:", format_vnet_sw_interface_name, vnm, si); else s = format (s, "DELETED:%d", rw->sw_if_index); } s = format (s, " mtu:%d next:%d", rw->max_l3_packet_bytes, rw->next_index); /* Format rewrite string. */ if (rw->data_bytes > 0) s = format (s, " %U", format_hex_bytes, rw->data, rw->data_bytes); return s; } u32 vnet_tx_node_index_for_sw_interface (vnet_main_t * vnm, u32 sw_if_index) { vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); return (hw->output_node_index); } void vnet_rewrite_init (vnet_main_t * vnm, u32 sw_if_index, vnet_link_t linkt, u32 this_node, u32 next_node, vnet_rewrite_header_t * rw) { rw->sw_if_index = sw_if_index; rw->next_index = vlib_node_add_next (vnm->vlib_main, this_node, next_node); rw->max_l3_packet_bytes = vnet_sw_interface_get_mtu (vnm, sw_if_index, vnet_link_to_mtu (linkt)); } void vnet_rewrite_update_mtu (vnet_main_t * vnm, vnet_link_t linkt, vnet_rewrite_header_t * rw) { rw->max_l3_packet_bytes = vnet_sw_interface_get_mtu (vnm, rw->sw_if_index, vnet_link_to_mtu (linkt)); } void vnet_rewrite_for_sw_interface (vnet_main_t * vnm, vnet_link_t link_type, u32 sw_if_index, u32 node_index, void *dst_address, vnet_rewrite_header_t * rw, u32 max_rewrite_bytes) { vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); vnet_hw_interface_class_t *hc = vnet_get_hw_interface_class (vnm, hw->hw_class_index); u8 *rewrite = NULL; vnet_rewrite_init (vnm, sw_if_index, link_type, node_index, vnet_tx_node_index_for_sw_interface (vnm, sw_if_index), rw); ASSERT (hc->build_rewrite); rewrite = hc->build_rewrite (vnm, sw_if_index, link_type, dst_address); ASSERT (vec_len (rewrite) < max_rewrite_bytes); vnet_rewrite_set_data_internal (rw, max_rewrite_bytes, rewrite, vec_len (rewrite)); vec_free (rewrite); } void serialize_vnet_rewrite (serialize_main_t * m, va_list * va) { vnet_rewrite_header_t *rw = va_arg (*va, vnet_rewrite_header_t *); u32 max_data_bytes = va_arg (*va, u32); u8 *p; serialize_integer (m, rw->sw_if_index, sizeof (rw->sw_if_index)); serialize_integer (m, rw->data_bytes, sizeof (rw->data_bytes)); serialize_integer (m, rw->max_l3_packet_bytes, sizeof (rw->max_l3_packet_bytes)); p = serialize_get (m, rw->data_bytes); clib_memcpy (p, vnet_rewrite_get_data_internal (rw, max_data_bytes), rw->data_bytes); } void unserialize_vnet_rewrite (serialize_main_t * m, va_list * va) { vnet_rewrite_header_t *rw = va_arg (*va, vnet_rewrite_header_t *); u32 max_data_bytes = va_arg (*va, u32); u8 *p; /* It is up to user to fill these in. */ rw->next_index = ~0; unserialize_integer (m, &rw->sw_if_index, sizeof (rw->sw_if_index)); unserialize_integer (m, &rw->data_bytes, sizeof (rw->data_bytes)); unserialize_integer (m, &rw->max_l3_packet_bytes, sizeof (rw->max_l3_packet_bytes)); p = unserialize_get (m, rw->data_bytes); clib_memcpy (vnet_rewrite_get_data_internal (rw, max_data_bytes), p, rw->data_bytes); } u8 * vnet_build_rewrite_for_sw_interface (vnet_main_t * vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address) { vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); vnet_hw_interface_class_t *hc = vnet_get_hw_interface_class (vnm, hw->hw_class_index); ASSERT (hc->build_rewrite); return (hc->build_rewrite (vnm, sw_if_index, link_type, dst_address)); } void vnet_update_adjacency_for_sw_interface (vnet_main_t * vnm, u32 sw_if_index, u32 ai) { vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); vnet_hw_interface_class_t *hc = vnet_get_hw_interface_class (vnm, hw->hw_class_index); ASSERT (hc->update_adjacency); hc->update_adjacency (vnm, sw_if_index, ai); } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */