Class: VagrantPlugins::ProviderLibvirt::Config

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Action::Builtin::MixinSyncedFolders
Defined in:
lib/vagrant-libvirt/config.rb

Constant Summary collapse

ARCH_SUPPORT_CPU =

list of architectures that support cpu based on github.com/libvirt/libvirt/tree/master/src/cpu

[
  'aarch64', 'armv6l', 'armv7b', 'armv7l',
  'i686', 'x86_64',
  'ppc64', 'ppc64le',
  's390', 's390x',
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# File 'lib/vagrant-libvirt/config.rb', line 224

def initialize
  @uri               = UNSET_VALUE
  @driver            = UNSET_VALUE
  @host              = UNSET_VALUE
  @port              = UNSET_VALUE
  @connect_via_ssh   = UNSET_VALUE
  @username          = UNSET_VALUE
  @password          = UNSET_VALUE
  @id_ssh_key_file   = UNSET_VALUE
  @socket            = UNSET_VALUE
  @proxy_command     = UNSET_VALUE
  @forward_ssh_port  = UNSET_VALUE # forward port with id 'ssh'
  @storage_pool_name = UNSET_VALUE
  @snapshot_pool_name = UNSET_VALUE
  @random_hostname   = UNSET_VALUE
  @management_network_device  = UNSET_VALUE
  @management_network_name    = UNSET_VALUE
  @management_network_address = UNSET_VALUE
  @management_network_mode = UNSET_VALUE
  @management_network_mac  = UNSET_VALUE
  @management_network_guest_ipv6 = UNSET_VALUE
  @management_network_autostart = UNSET_VALUE
  @management_network_pci_slot = UNSET_VALUE
  @management_network_pci_bus = UNSET_VALUE
  @management_network_domain = UNSET_VALUE
  @management_network_mtu = UNSET_VALUE
  @management_network_keep = UNSET_VALUE
  @management_network_driver_iommu = UNSET_VALUE

  # System connection information
  @system_uri      = UNSET_VALUE

  # Domain specific settings.
  @title             = UNSET_VALUE
  @description       = UNSET_VALUE
  @uuid              = UNSET_VALUE
  @memory            = UNSET_VALUE
  @nodeset           = UNSET_VALUE
  @memory_backing    = UNSET_VALUE
  @memtunes          = {}
  @cpus              = UNSET_VALUE
  @cpuset            = UNSET_VALUE
  @cpu_mode          = UNSET_VALUE
  @cpu_model         = UNSET_VALUE
  @cpu_fallback      = UNSET_VALUE
  @cpu_features      = UNSET_VALUE
  @cpu_topology      = UNSET_VALUE
  @cpu_affinity      = UNSET_VALUE
  @shares            = UNSET_VALUE
  @features          = UNSET_VALUE
  @features_hyperv   = UNSET_VALUE
  @clock_offset      = UNSET_VALUE
  @clock_timers      = []
  @launchsecurity_data = UNSET_VALUE
  @numa_nodes        = UNSET_VALUE
  @loader            = UNSET_VALUE
  @nvram             = UNSET_VALUE
  @machine_type      = UNSET_VALUE
  @machine_arch      = UNSET_VALUE
  @machine_virtual_size = UNSET_VALUE
  @disk_bus          = UNSET_VALUE
  @disk_device       = UNSET_VALUE
  @disk_address_type = UNSET_VALUE
  @disk_controller_model = UNSET_VALUE
  @disk_driver_opts  = {}
  @nic_model_type    = UNSET_VALUE
  @nested            = UNSET_VALUE
  @volume_cache      = UNSET_VALUE
  @kernel            = UNSET_VALUE
  @initrd            = UNSET_VALUE
  @dtb               = UNSET_VALUE
  @cmd_line          = UNSET_VALUE
  @emulator_path     = UNSET_VALUE
  @graphics_type     = UNSET_VALUE
  @graphics_autoport = UNSET_VALUE
  @graphics_port     = UNSET_VALUE
  @graphics_websocket = UNSET_VALUE
  @graphics_ip       = UNSET_VALUE
  @graphics_passwd   = UNSET_VALUE
  @graphics_gl       = UNSET_VALUE
  @video_type        = UNSET_VALUE
  @video_vram        = UNSET_VALUE
  @video_accel3d     = UNSET_VALUE
  @sound_type        = UNSET_VALUE
  @keymap            = UNSET_VALUE
  @kvm_hidden        = UNSET_VALUE

  @tpm_model         = UNSET_VALUE
  @tpm_type          = UNSET_VALUE
  @tpm_path          = UNSET_VALUE
  @tpm_version       = UNSET_VALUE

  @sysinfo           = UNSET_VALUE

  @memballoon_enabled = UNSET_VALUE
  @memballoon_model   = UNSET_VALUE
  @memballoon_pci_bus = UNSET_VALUE
  @memballoon_pci_slot = UNSET_VALUE

  @nic_adapter_count = UNSET_VALUE

  # Boot order
  @boot_order        = []
  # Storage
  @disks             = []
  @cdroms            = []
  @floppies          = []

  # Inputs
  @inputs            = UNSET_VALUE

  # Channels
  @channels          = UNSET_VALUE

  # PCI device passthrough
  @pcis              = UNSET_VALUE

  # Random number device passthrough
  @rng = UNSET_VALUE

  # Watchdog device
  @watchdog_dev      = UNSET_VALUE

  # USB controller
  @usbctl_dev        = UNSET_VALUE

  # USB device passthrough
  @usbs              = UNSET_VALUE

  # Redirected devices
  @redirdevs         = UNSET_VALUE
  @redirfilters      = UNSET_VALUE

  # smartcard device
  @smartcard_dev     = UNSET_VALUE

  # Suspend mode
  @suspend_mode      = UNSET_VALUE

  # Autostart
  @autostart         = UNSET_VALUE

  # Attach mgmt network
  @mgmt_attach       = UNSET_VALUE

  # Additional QEMU commandline arguments
  @qemu_args         = UNSET_VALUE

  # Additional QEMU commandline environment variables
  @qemu_env          = UNSET_VALUE

  @qemu_use_session  = UNSET_VALUE

  # Use Qemu agent to get ip address
  @qemu_use_agent  = UNSET_VALUE

  @serials           = UNSET_VALUE

  # internal options to help override behaviour
  @host_device_exclude_prefixes = UNSET_VALUE
end

Instance Attribute Details

#autostartObject

Autostart



193
194
195
# File 'lib/vagrant-libvirt/config.rb', line 193

def autostart
  @autostart
end

#boot_orderObject

Returns the value of attribute boot_order.



104
105
106
# File 'lib/vagrant-libvirt/config.rb', line 104

def boot_order
  @boot_order
end

#cdromsObject

Returns the value of attribute cdroms.



158
159
160
# File 'lib/vagrant-libvirt/config.rb', line 158

def cdroms
  @cdroms
end

#channel(options = {}) ⇒ Object

Returns the value of attribute channel.



86
87
88
# File 'lib/vagrant-libvirt/config.rb', line 86

def channel
  @channel
end

#channelsObject

Channels



165
166
167
# File 'lib/vagrant-libvirt/config.rb', line 165

def channels
  @channels
end

#clock_offsetObject

Returns the value of attribute clock_offset.



98
99
100
# File 'lib/vagrant-libvirt/config.rb', line 98

def clock_offset
  @clock_offset
end

#clock_timersObject

Returns the value of attribute clock_timers.



99
100
101
# File 'lib/vagrant-libvirt/config.rb', line 99

def clock_timers
  @clock_timers
end

#cmd_lineObject

Returns the value of attribute cmd_line.



117
118
119
# File 'lib/vagrant-libvirt/config.rb', line 117

def cmd_line
  @cmd_line
end

#connect_via_sshObject

If use ssh tunnel to connect to Libvirt.



28
29
30
# File 'lib/vagrant-libvirt/config.rb', line 28

def connect_via_ssh
  @connect_via_ssh
end

#cpu_affinityObject

Returns the value of attribute cpu_affinity.



94
95
96
# File 'lib/vagrant-libvirt/config.rb', line 94

def cpu_affinity
  @cpu_affinity
end

#cpu_fallbackObject

Returns the value of attribute cpu_fallback.



91
92
93
# File 'lib/vagrant-libvirt/config.rb', line 91

def cpu_fallback
  @cpu_fallback
end

#cpu_featuresObject

Returns the value of attribute cpu_features.



92
93
94
# File 'lib/vagrant-libvirt/config.rb', line 92

def cpu_features
  @cpu_features
end

#cpu_modeObject

Returns the value of attribute cpu_mode.



89
90
91
# File 'lib/vagrant-libvirt/config.rb', line 89

def cpu_mode
  @cpu_mode
end

#cpu_modelObject

Returns the value of attribute cpu_model.



90
91
92
# File 'lib/vagrant-libvirt/config.rb', line 90

def cpu_model
  @cpu_model
end

#cpu_topologyObject

Returns the value of attribute cpu_topology.



93
94
95
# File 'lib/vagrant-libvirt/config.rb', line 93

def cpu_topology
  @cpu_topology
end

#cpusObject

Returns the value of attribute cpus.



87
88
89
# File 'lib/vagrant-libvirt/config.rb', line 87

def cpus
  @cpus
end

#cpusetObject

Returns the value of attribute cpuset.



88
89
90
# File 'lib/vagrant-libvirt/config.rb', line 88

def cpuset
  @cpuset
end

#default_prefixObject

Default host prefix (alternative to use project folder name)



76
77
78
# File 'lib/vagrant-libvirt/config.rb', line 76

def default_prefix
  @default_prefix
end

#descriptionObject

Returns the value of attribute description.



80
81
82
# File 'lib/vagrant-libvirt/config.rb', line 80

def description
  @description
end

#disk_address_typeObject

Returns the value of attribute disk_address_type.



110
111
112
# File 'lib/vagrant-libvirt/config.rb', line 110

def disk_address_type
  @disk_address_type
end

#disk_busObject

Returns the value of attribute disk_bus.



108
109
110
# File 'lib/vagrant-libvirt/config.rb', line 108

def disk_bus
  @disk_bus
end

#disk_controller_modelObject

Returns the value of attribute disk_controller_model.



111
112
113
# File 'lib/vagrant-libvirt/config.rb', line 111

def disk_controller_model
  @disk_controller_model
end

#disk_deviceObject

Returns the value of attribute disk_device.



109
110
111
# File 'lib/vagrant-libvirt/config.rb', line 109

def disk_device
  @disk_device
end

#disk_driver_optsObject

Returns the value of attribute disk_driver_opts.



112
113
114
# File 'lib/vagrant-libvirt/config.rb', line 112

def disk_driver_opts
  @disk_driver_opts
end

#disksObject

Storage



157
158
159
# File 'lib/vagrant-libvirt/config.rb', line 157

def disks
  @disks
end

#driverObject

A hypervisor name to access via Libvirt.



21
22
23
# File 'lib/vagrant-libvirt/config.rb', line 21

def driver
  @driver
end

#dtbObject

Returns the value of attribute dtb.



119
120
121
# File 'lib/vagrant-libvirt/config.rb', line 119

def dtb
  @dtb
end

#emulator_pathObject

Returns the value of attribute emulator_path.



120
121
122
# File 'lib/vagrant-libvirt/config.rb', line 120

def emulator_path
  @emulator_path
end

#featuresObject

Returns the value of attribute features.



96
97
98
# File 'lib/vagrant-libvirt/config.rb', line 96

def features
  @features
end

#features_hypervObject

Returns the value of attribute features_hyperv.



97
98
99
# File 'lib/vagrant-libvirt/config.rb', line 97

def features_hyperv
  @features_hyperv
end

#floppiesObject

Returns the value of attribute floppies.



159
160
161
# File 'lib/vagrant-libvirt/config.rb', line 159

def floppies
  @floppies
end

#forward_ssh_portObject

Forward port with id ‘ssh’



44
45
46
# File 'lib/vagrant-libvirt/config.rb', line 44

def forward_ssh_port
  @forward_ssh_port
end

#graphics_autoportObject

Returns the value of attribute graphics_autoport.



122
123
124
# File 'lib/vagrant-libvirt/config.rb', line 122

def graphics_autoport
  @graphics_autoport
end

#graphics_glObject

Returns the value of attribute graphics_gl.



127
128
129
# File 'lib/vagrant-libvirt/config.rb', line 127

def graphics_gl
  @graphics_gl
end

#graphics_ipObject

Returns the value of attribute graphics_ip.



126
127
128
# File 'lib/vagrant-libvirt/config.rb', line 126

def graphics_ip
  @graphics_ip
end

#graphics_passwdObject

Returns the value of attribute graphics_passwd.



125
126
127
# File 'lib/vagrant-libvirt/config.rb', line 125

def graphics_passwd
  @graphics_passwd
end

#graphics_portObject

Returns the value of attribute graphics_port.



123
124
125
# File 'lib/vagrant-libvirt/config.rb', line 123

def graphics_port
  @graphics_port
end

#graphics_typeObject

Returns the value of attribute graphics_type.



121
122
123
# File 'lib/vagrant-libvirt/config.rb', line 121

def graphics_type
  @graphics_type
end

#graphics_websocketObject

Returns the value of attribute graphics_websocket.



124
125
126
# File 'lib/vagrant-libvirt/config.rb', line 124

def graphics_websocket
  @graphics_websocket
end

#hostObject

The name of the server, where Libvirtd is running.



24
25
26
# File 'lib/vagrant-libvirt/config.rb', line 24

def host
  @host
end

#host_device_exclude_prefixesObject

internal helper attributes



214
215
216
# File 'lib/vagrant-libvirt/config.rb', line 214

def host_device_exclude_prefixes
  @host_device_exclude_prefixes
end

#id_ssh_key_fileObject

ID SSH key file



39
40
41
# File 'lib/vagrant-libvirt/config.rb', line 39

def id_ssh_key_file
  @id_ssh_key_file
end

#initrdObject

Returns the value of attribute initrd.



118
119
120
# File 'lib/vagrant-libvirt/config.rb', line 118

def initrd
  @initrd
end

#inputsObject

Inputs



162
163
164
# File 'lib/vagrant-libvirt/config.rb', line 162

def inputs
  @inputs
end

#kernelObject

Returns the value of attribute kernel.



116
117
118
# File 'lib/vagrant-libvirt/config.rb', line 116

def kernel
  @kernel
end

#keymapObject

Returns the value of attribute keymap.



131
132
133
# File 'lib/vagrant-libvirt/config.rb', line 131

def keymap
  @keymap
end

#kvm_hiddenObject

Returns the value of attribute kvm_hidden.



132
133
134
# File 'lib/vagrant-libvirt/config.rb', line 132

def kvm_hidden
  @kvm_hidden
end

#launchsecurity_dataObject

Returns the value of attribute launchsecurity_data.



100
101
102
# File 'lib/vagrant-libvirt/config.rb', line 100

def launchsecurity_data
  @launchsecurity_data
end

#loaderObject

Returns the value of attribute loader.



102
103
104
# File 'lib/vagrant-libvirt/config.rb', line 102

def loader
  @loader
end

#machine_archObject

Returns the value of attribute machine_arch.



106
107
108
# File 'lib/vagrant-libvirt/config.rb', line 106

def machine_arch
  @machine_arch
end

#machine_typeObject

Returns the value of attribute machine_type.



105
106
107
# File 'lib/vagrant-libvirt/config.rb', line 105

def machine_type
  @machine_type
end

#machine_virtual_sizeObject

Returns the value of attribute machine_virtual_size.



107
108
109
# File 'lib/vagrant-libvirt/config.rb', line 107

def machine_virtual_size
  @machine_virtual_size
end

#management_network_addressObject

Returns the value of attribute management_network_address.



60
61
62
# File 'lib/vagrant-libvirt/config.rb', line 60

def management_network_address
  @management_network_address
end

#management_network_autostartObject

Returns the value of attribute management_network_autostart.



64
65
66
# File 'lib/vagrant-libvirt/config.rb', line 64

def management_network_autostart
  @management_network_autostart
end

#management_network_deviceObject

Libvirt default network



58
59
60
# File 'lib/vagrant-libvirt/config.rb', line 58

def management_network_device
  @management_network_device
end

#management_network_domainObject

Returns the value of attribute management_network_domain.



67
68
69
# File 'lib/vagrant-libvirt/config.rb', line 67

def management_network_domain
  @management_network_domain
end

#management_network_driver_iommuObject

Returns the value of attribute management_network_driver_iommu.



70
71
72
# File 'lib/vagrant-libvirt/config.rb', line 70

def management_network_driver_iommu
  @management_network_driver_iommu
end

#management_network_guest_ipv6Object

Returns the value of attribute management_network_guest_ipv6.



63
64
65
# File 'lib/vagrant-libvirt/config.rb', line 63

def management_network_guest_ipv6
  @management_network_guest_ipv6
end

#management_network_keepObject

Returns the value of attribute management_network_keep.



69
70
71
# File 'lib/vagrant-libvirt/config.rb', line 69

def management_network_keep
  @management_network_keep
end

#management_network_macObject

Returns the value of attribute management_network_mac.



62
63
64
# File 'lib/vagrant-libvirt/config.rb', line 62

def management_network_mac
  @management_network_mac
end

#management_network_modeObject

Returns the value of attribute management_network_mode.



61
62
63
# File 'lib/vagrant-libvirt/config.rb', line 61

def management_network_mode
  @management_network_mode
end

#management_network_mtuObject

Returns the value of attribute management_network_mtu.



68
69
70
# File 'lib/vagrant-libvirt/config.rb', line 68

def management_network_mtu
  @management_network_mtu
end

#management_network_nameObject

Returns the value of attribute management_network_name.



59
60
61
# File 'lib/vagrant-libvirt/config.rb', line 59

def management_network_name
  @management_network_name
end

#management_network_pci_busObject

Returns the value of attribute management_network_pci_bus.



65
66
67
# File 'lib/vagrant-libvirt/config.rb', line 65

def management_network_pci_bus
  @management_network_pci_bus
end

#management_network_pci_slotObject

Returns the value of attribute management_network_pci_slot.



66
67
68
# File 'lib/vagrant-libvirt/config.rb', line 66

def management_network_pci_slot
  @management_network_pci_slot
end

#memballoon_enabledObject

Configure the memballoon



146
147
148
# File 'lib/vagrant-libvirt/config.rb', line 146

def memballoon_enabled
  @memballoon_enabled
end

#memballoon_modelObject

Returns the value of attribute memballoon_model.



147
148
149
# File 'lib/vagrant-libvirt/config.rb', line 147

def memballoon_model
  @memballoon_model
end

#memballoon_pci_busObject

Returns the value of attribute memballoon_pci_bus.



148
149
150
# File 'lib/vagrant-libvirt/config.rb', line 148

def memballoon_pci_bus
  @memballoon_pci_bus
end

#memballoon_pci_slotObject

Returns the value of attribute memballoon_pci_slot.



149
150
151
# File 'lib/vagrant-libvirt/config.rb', line 149

def memballoon_pci_slot
  @memballoon_pci_slot
end

#memoryObject

Returns the value of attribute memory.



82
83
84
# File 'lib/vagrant-libvirt/config.rb', line 82

def memory
  @memory
end

#memory_backingObject

Returns the value of attribute memory_backing.



84
85
86
# File 'lib/vagrant-libvirt/config.rb', line 84

def memory_backing
  @memory_backing
end

#memtunesObject

Returns the value of attribute memtunes.



85
86
87
# File 'lib/vagrant-libvirt/config.rb', line 85

def memtunes
  @memtunes
end

#mgmt_attachObject

Attach mgmt network



196
197
198
# File 'lib/vagrant-libvirt/config.rb', line 196

def mgmt_attach
  @mgmt_attach
end

#nestedObject

Returns the value of attribute nested.



114
115
116
# File 'lib/vagrant-libvirt/config.rb', line 114

def nested
  @nested
end

#nic_adapter_countObject

Sets the max number of NICs that can be created Default set to 8. Don’t change the default unless you know what are doing



154
155
156
# File 'lib/vagrant-libvirt/config.rb', line 154

def nic_adapter_count
  @nic_adapter_count
end

#nic_model_typeObject

Returns the value of attribute nic_model_type.



113
114
115
# File 'lib/vagrant-libvirt/config.rb', line 113

def nic_model_type
  @nic_model_type
end

#nodesetObject

Returns the value of attribute nodeset.



83
84
85
# File 'lib/vagrant-libvirt/config.rb', line 83

def nodeset
  @nodeset
end

#numa_nodesObject

Returns the value of attribute numa_nodes.



101
102
103
# File 'lib/vagrant-libvirt/config.rb', line 101

def numa_nodes
  @numa_nodes
end

#nvramObject

Returns the value of attribute nvram.



103
104
105
# File 'lib/vagrant-libvirt/config.rb', line 103

def nvram
  @nvram
end

#passwordObject

Password for Libvirt connection.



36
37
38
# File 'lib/vagrant-libvirt/config.rb', line 36

def password
  @password
end

#pcisObject

PCI device passthrough



168
169
170
# File 'lib/vagrant-libvirt/config.rb', line 168

def pcis
  @pcis
end

#portObject

Returns the value of attribute port.



25
26
27
# File 'lib/vagrant-libvirt/config.rb', line 25

def port
  @port
end

#proxy_commandObject

Returns the value of attribute proxy_command.



41
42
43
# File 'lib/vagrant-libvirt/config.rb', line 41

def proxy_command
  @proxy_command
end

#qemu_argsObject

Additional qemuargs arguments



199
200
201
# File 'lib/vagrant-libvirt/config.rb', line 199

def qemu_args
  @qemu_args
end

#qemu_envObject

Additional qemuenv arguments



202
203
204
# File 'lib/vagrant-libvirt/config.rb', line 202

def qemu_env
  @qemu_env
end

#qemu_use_agentObject

Use QEMU Agent to get ip address



208
209
210
# File 'lib/vagrant-libvirt/config.rb', line 208

def qemu_use_agent
  @qemu_use_agent
end

#qemu_use_sessionObject

Use QEMU session instead of system



205
206
207
# File 'lib/vagrant-libvirt/config.rb', line 205

def qemu_use_session
  @qemu_use_session
end

#random_hostnameObject

Turn on to prevent hostname conflicts



55
56
57
# File 'lib/vagrant-libvirt/config.rb', line 55

def random_hostname
  @random_hostname
end

#redirdevsObject

Redirected devices



183
184
185
# File 'lib/vagrant-libvirt/config.rb', line 183

def redirdevs
  @redirdevs
end

#redirfiltersObject

Returns the value of attribute redirfilters.



184
185
186
# File 'lib/vagrant-libvirt/config.rb', line 184

def redirfilters
  @redirfilters
end

#rngObject

Random number device passthrough



171
172
173
# File 'lib/vagrant-libvirt/config.rb', line 171

def rng
  @rng
end

#serialsObject

serial consoles



211
212
213
# File 'lib/vagrant-libvirt/config.rb', line 211

def serials
  @serials
end

#sharesObject

Returns the value of attribute shares.



95
96
97
# File 'lib/vagrant-libvirt/config.rb', line 95

def shares
  @shares
end

#smartcard_devObject

smartcard device



187
188
189
# File 'lib/vagrant-libvirt/config.rb', line 187

def smartcard_dev
  @smartcard_dev
end

#snapshot_pool_nameObject

Libvirt storage pool where the base image snapshot shall be stored



52
53
54
# File 'lib/vagrant-libvirt/config.rb', line 52

def snapshot_pool_name
  @snapshot_pool_name
end

#socketObject

Path towards the Libvirt socket



30
31
32
# File 'lib/vagrant-libvirt/config.rb', line 30

def socket
  @socket
end

#sound_typeObject

Returns the value of attribute sound_type.



133
134
135
# File 'lib/vagrant-libvirt/config.rb', line 133

def sound_type
  @sound_type
end

#storage_pool_nameObject

Libvirt storage pool name, where box image and instance snapshots will be stored.



48
49
50
# File 'lib/vagrant-libvirt/config.rb', line 48

def storage_pool_name
  @storage_pool_name
end

#storage_pool_pathObject

Returns the value of attribute storage_pool_path.



49
50
51
# File 'lib/vagrant-libvirt/config.rb', line 49

def storage_pool_path
  @storage_pool_path
end

#suspend_modeObject

Suspend mode



190
191
192
# File 'lib/vagrant-libvirt/config.rb', line 190

def suspend_mode
  @suspend_mode
end

#sysinfoObject

Configure sysinfo values



143
144
145
# File 'lib/vagrant-libvirt/config.rb', line 143

def sysinfo
  @sysinfo
end

#system_uriObject

System connection information



73
74
75
# File 'lib/vagrant-libvirt/config.rb', line 73

def system_uri
  @system_uri
end

#titleObject

Domain specific settings used while creating new domain.



79
80
81
# File 'lib/vagrant-libvirt/config.rb', line 79

def title
  @title
end

#tpm_modelObject

Sets the information for connecting to a host TPM device Only supports socket-based TPMs



137
138
139
# File 'lib/vagrant-libvirt/config.rb', line 137

def tpm_model
  @tpm_model
end

#tpm_pathObject

Returns the value of attribute tpm_path.



139
140
141
# File 'lib/vagrant-libvirt/config.rb', line 139

def tpm_path
  @tpm_path
end

#tpm_typeObject

Returns the value of attribute tpm_type.



138
139
140
# File 'lib/vagrant-libvirt/config.rb', line 138

def tpm_type
  @tpm_type
end

#tpm_versionObject

Returns the value of attribute tpm_version.



140
141
142
# File 'lib/vagrant-libvirt/config.rb', line 140

def tpm_version
  @tpm_version
end

#uriObject

manually specify URI will supersede most other options if provided



18
19
20
# File 'lib/vagrant-libvirt/config.rb', line 18

def uri
  @uri
end

#usbctl_devObject

USB controller



177
178
179
# File 'lib/vagrant-libvirt/config.rb', line 177

def usbctl_dev
  @usbctl_dev
end

#usbsObject

USB device passthrough



180
181
182
# File 'lib/vagrant-libvirt/config.rb', line 180

def usbs
  @usbs
end

#usernameObject

The username to access Libvirt.



33
34
35
# File 'lib/vagrant-libvirt/config.rb', line 33

def username
  @username
end

#uuidObject

Returns the value of attribute uuid.



81
82
83
# File 'lib/vagrant-libvirt/config.rb', line 81

def uuid
  @uuid
end

#video_accel3dObject

Returns the value of attribute video_accel3d.



130
131
132
# File 'lib/vagrant-libvirt/config.rb', line 130

def video_accel3d
  @video_accel3d
end

#video_typeObject

Returns the value of attribute video_type.



128
129
130
# File 'lib/vagrant-libvirt/config.rb', line 128

def video_type
  @video_type
end

#video_vramObject

Returns the value of attribute video_vram.



129
130
131
# File 'lib/vagrant-libvirt/config.rb', line 129

def video_vram
  @video_vram
end

#volume_cacheObject

deprecated, kept for backwards compatibility; use disk_driver



115
116
117
# File 'lib/vagrant-libvirt/config.rb', line 115

def volume_cache
  @volume_cache
end

#watchdog_devObject

Watchdog device



174
175
176
# File 'lib/vagrant-libvirt/config.rb', line 174

def watchdog_dev
  @watchdog_dev
end

Instance Method Details

#_default_uriObject



848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
# File 'lib/vagrant-libvirt/config.rb', line 848

def _default_uri
  # Determine if any settings except driver provided explicitly, if not
  # and the LIBVIRT_DEFAULT_URI var is set, use that.
  #
  # Skipping driver because that may be set on individual boxes rather
  # than by the user.
  if [
      @connect_via_ssh, @host, @username, @password,
      @id_ssh_key_file, @qemu_use_session, @socket,
  ].none?{ |v| v != UNSET_VALUE }
    if ENV.fetch('LIBVIRT_DEFAULT_URI', '') != ""
      @uri = ENV['LIBVIRT_DEFAULT_URI']
    end
  end
end

#_generate_numaObject



427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# File 'lib/vagrant-libvirt/config.rb', line 427

def _generate_numa
  @numa_nodes.collect { |x|
    # Perform some validation of cpu values
    unless x[:cpus] =~ /^\d+-\d+$/
      raise 'numa_nodes[:cpus] must be in format "integer-integer"'
    end

    # Convert to KiB
    x[:memory] = x[:memory].to_i * 1024
  }

  # Grab the value of the last @numa_nodes[:cpus] and verify @cpus matches
  # Note: [:cpus] is zero based and @cpus is not, so we need to +1
  last_cpu = @numa_nodes.last[:cpus]
  last_cpu = last_cpu.scan(/\d+$/)[0]
  last_cpu = last_cpu.to_i + 1

  if @cpus != last_cpu.to_i
    raise 'The total number of numa_nodes[:cpus] must equal config.cpus'
  end

  @numa_nodes
end

#_generate_uri(qemu_use_session) ⇒ Object

code to generate URI from from either the LIBVIRT_URI environment variable or a config moved out of the connect action



866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
# File 'lib/vagrant-libvirt/config.rb', line 866

def _generate_uri(qemu_use_session)
  # builds the Libvirt connection URI from the given driver config
  # Setup connection uri.
  uri = @driver.dup
  virt_path = case uri
              when 'qemu', 'kvm'
                qemu_use_session ? '/session' : '/system'
              when 'openvz', 'uml', 'phyp', 'parallels'
                '/system'
              when '@en', 'esx'
                '/'
              when 'vbox', 'vmwarews', 'hyperv'
                '/session'
              else
                raise "Require specify driver #{uri}"
  end
  if uri == 'kvm'
    uri = 'qemu' # use QEMU uri for KVM domain type
  end

  # turn on ssh if an ssh key file is explicitly provided
  if @connect_via_ssh == UNSET_VALUE && @id_ssh_key_file && @id_ssh_key_file != UNSET_VALUE
    @connect_via_ssh = true
  end

  params = {}

  if @connect_via_ssh == true
    finalize_id_ssh_key_file

    uri += '+ssh://'
    uri += "#{URI.encode_www_form_component(@username)}@" if @username && @username != UNSET_VALUE

    uri += (@host && @host != UNSET_VALUE ? @host : 'localhost')

    params['no_verify'] = '1'
    params['keyfile'] = @id_ssh_key_file if @id_ssh_key_file
  else
    uri += '://'
    uri += @host if @host && @host != UNSET_VALUE
  end

  uri += virt_path

  # set path to Libvirt socket
  params['socket'] = @socket if @socket

  uri += '?' + params.map { |pair| pair.join('=') }.join('&') unless params.empty?
  uri
end

#_get_cdrom_dev(cdroms) ⇒ Object



390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# File 'lib/vagrant-libvirt/config.rb', line 390

def _get_cdrom_dev(cdroms)
  exist = Hash[cdroms.collect { |x| [x[:dev], true] }]
  # hda - hdc
  curr = 'a'.ord
  while curr <= 'd'.ord
    dev = "hd#{curr.chr}"
    if exist[dev]
      curr += 1
      next
    else
      return dev
    end
  end

  # is it better to raise our own error, or let Libvirt cause the exception?
  raise 'Only four cdroms may be attached at a time'
end

#_get_floppy_dev(floppies) ⇒ Object



409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
# File 'lib/vagrant-libvirt/config.rb', line 409

def _get_floppy_dev(floppies)
  exist = Hash[floppies.collect { |x| [x[:dev], true] }]
  # fda - fdb
  curr = 'a'.ord
  while curr <= 'b'.ord
    dev = "fd#{curr.chr}"
    if exist[dev]
      curr += 1
      next
    else
      return dev
    end
  end

  # is it better to raise our own error, or let Libvirt cause the exception?
  raise 'Only two floppies may be attached at a time'
end

#_handle_cdrom_storage(options = {}) ⇒ Object



741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
# File 'lib/vagrant-libvirt/config.rb', line 741

def _handle_cdrom_storage(options = {})
  # <disk type="file" device="cdrom">
  #   <source file="/home/user/virtio-win-0.1-100.iso"/>
  #   <target dev="hdc"/>
  #   <readonly/>
  #   <address type='drive' controller='0' bus='1' target='0' unit='0'/>
  # </disk>
  #
  # note the target dev will need to be changed with each cdrom drive (hdc, hdd, etc),
  # as will the address unit number (unit=0, unit=1, etc)

  options = {
    type: 'raw',
    bus: 'ide',
    path: nil
  }.merge(options)

  cdrom = {
    type: options[:type],
    dev: options[:dev],
    bus: options[:bus],
    path: options[:path]
  }

  @cdroms << cdrom
end

#_handle_disk_storage(options = {}) ⇒ Object



790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
# File 'lib/vagrant-libvirt/config.rb', line 790

def _handle_disk_storage(options = {})
  options = {
    type: 'qcow2',
    size: '10G', # matches the fog default
    path: nil,
    bus: 'virtio'
  }.merge(options)

  disk = {
    device: options[:device],
    type: options[:type],
    address_type: options[:address_type],
    size: options[:size],
    path: options[:path],
    bus: options[:bus],
    cache: options[:cache] || 'default',
    allow_existing: options[:allow_existing],
    shareable: options[:shareable],
    serial: options[:serial],
    io: options[:io],
    copy_on_read: options[:copy_on_read],
    discard: options[:discard],
    detect_zeroes: options[:detect_zeroes],
    pool: options[:pool], # overrides storage_pool setting for additional disks
    wwn: options[:wwn],
  }

  @disks << disk # append
end

#_handle_floppy_storage(options = {}) ⇒ Object



768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
# File 'lib/vagrant-libvirt/config.rb', line 768

def _handle_floppy_storage(options = {})
  # <disk type='file' device='floppy'>
  # <source file='/var/lib/libvirt/images/floppy.vfd'/>
  # <target dev='fda' bus='fdc'/>
  # </disk>
  #
  # note the target dev will need to be changed with each floppy drive (fda or fdb)

  options = {
    bus: 'fdc',
    path: nil
  }.merge(options)

  floppy = {
    dev: options[:dev],
    bus: options[:bus],
    path: options[:path]
  }

  @floppies << floppy
end

#_parse_uri(uri) ⇒ Object



917
918
919
920
921
922
923
# File 'lib/vagrant-libvirt/config.rb', line 917

def _parse_uri(uri)
  begin
    URI.parse(uri)
  rescue
    raise "@uri set to invalid uri '#{uri}'"
  end
end

#boot(device) ⇒ Object



386
387
388
# File 'lib/vagrant-libvirt/config.rb', line 386

def boot(device)
  @boot_order << device # append
end

#clock_timer(options = {}) ⇒ Object



483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
# File 'lib/vagrant-libvirt/config.rb', line 483

def clock_timer(options = {})
  if options[:name].nil?
    raise 'Clock timer name must be specified'
  end

  options.each do |key, value|
    case key
      when :name, :track, :tickpolicy, :frequency, :mode, :present
        if value.nil?
          raise "Value of timer option #{key} is nil"
        end
      else
        raise "Unknown clock timer option: #{key}"
    end
  end

  @clock_timers.push(options.dup)
end

#cpu_feature(options = {}) ⇒ Object



451
452
453
454
455
456
457
458
459
460
# File 'lib/vagrant-libvirt/config.rb', line 451

def cpu_feature(options = {})
  if options[:name].nil? || options[:policy].nil?
    raise 'CPU Feature name AND policy must be specified'
  end

  @cpu_features = [] if @cpu_features == UNSET_VALUE

  @cpu_features.push(name:   options[:name],
                     policy: options[:policy])
end

#cpuaffinitiy(affinity = {}) ⇒ Object



516
517
518
519
520
521
522
523
524
# File 'lib/vagrant-libvirt/config.rb', line 516

def cpuaffinitiy(affinity = {})
  if @cpu_affinity == UNSET_VALUE
    @cpu_affinity = {}
  end

  affinity.each do |vcpu, cpuset|
    @cpu_affinity[vcpu] = cpuset
  end
end

#cputopology(options = {}) ⇒ Object



502
503
504
505
506
507
508
509
510
511
512
513
514
# File 'lib/vagrant-libvirt/config.rb', line 502

def cputopology(options = {})
  if options[:sockets].nil? || options[:cores].nil? || options[:threads].nil?
    raise 'CPU topology must have all of sockets, cores and threads specified'
  end

  if @cpu_topology == UNSET_VALUE
    @cpu_topology = {}
  end

  @cpu_topology[:sockets] = options[:sockets]
  @cpu_topology[:cores] = options[:cores]
  @cpu_topology[:threads] = options[:threads]
end

#disk_driver(options = {}) ⇒ Object

Disk driver options for primary disk



722
723
724
725
# File 'lib/vagrant-libvirt/config.rb', line 722

def disk_driver(options = {})
  supported_opts = [:cache, :io, :copy_on_read, :discard, :detect_zeroes]
  @disk_driver_opts = options.select { |k,_| supported_opts.include? k }
end

#finalize!Object



925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
# File 'lib/vagrant-libvirt/config.rb', line 925

def finalize!
  _default_uri if @uri == UNSET_VALUE

  # settings which _generate_uri
  @driver = 'kvm' if @driver == UNSET_VALUE
  @password = nil if @password == UNSET_VALUE
  @socket = nil if @socket == UNSET_VALUE

  # If uri isn't set then let's build one from various sources.
  # Default to passing false for qemu_use_session if it's not set.
  if @uri == UNSET_VALUE
    @uri = _generate_uri(@qemu_use_session == UNSET_VALUE ? false : @qemu_use_session)
  end

  finalize_from_uri
  finalize_proxy_command

  # forward port with id 'ssh'
  @forward_ssh_port = false if @forward_ssh_port == UNSET_VALUE

  @storage_pool_name = 'default' if @storage_pool_name == UNSET_VALUE
  @snapshot_pool_name = @storage_pool_name if @snapshot_pool_name == UNSET_VALUE
  @storage_pool_path = nil if @storage_pool_path == UNSET_VALUE
  @random_hostname = false if @random_hostname == UNSET_VALUE
  @management_network_device = 'virbr0' if @management_network_device == UNSET_VALUE
  @management_network_name = 'vagrant-libvirt' if @management_network_name == UNSET_VALUE
  @management_network_address = '192.168.121.0/24' if @management_network_address == UNSET_VALUE
  @management_network_mode = 'nat' if @management_network_mode == UNSET_VALUE
  @management_network_mac = nil if @management_network_mac == UNSET_VALUE
  @management_network_guest_ipv6 = 'yes' if @management_network_guest_ipv6 == UNSET_VALUE
  @management_network_autostart = false if @management_network_autostart == UNSET_VALUE
  @management_network_pci_bus = nil if @management_network_pci_bus == UNSET_VALUE
  @management_network_pci_slot = nil if @management_network_pci_slot == UNSET_VALUE
  @management_network_domain = nil if @management_network_domain == UNSET_VALUE
  @management_network_mtu = nil if @management_network_mtu == UNSET_VALUE
  @management_network_keep = false if @management_network_keep == UNSET_VALUE
  @management_network_driver_iommu = false if @management_network_driver_iommu == UNSET_VALUE

  # Domain specific settings.
  @title = '' if @title == UNSET_VALUE
  @description = '' if @description == UNSET_VALUE
  @uuid = '' if @uuid == UNSET_VALUE
  @machine_type = nil if @machine_type == UNSET_VALUE
  @machine_arch = nil if @machine_arch == UNSET_VALUE
  @memory = 512 if @memory == UNSET_VALUE
  @nodeset = nil if @nodeset == UNSET_VALUE
  @memory_backing = [] if @memory_backing == UNSET_VALUE
  @cpus = 1 if @cpus == UNSET_VALUE
  @cpuset = nil if @cpuset == UNSET_VALUE
  @cpu_mode = if @cpu_mode == UNSET_VALUE
                # only some architectures support the cpu element
                if @machine_arch.nil? || ARCH_SUPPORT_CPU.include?(@machine_arch.downcase)
                  'host-model'
                else
                  nil
                end
              else
                @cpu_mode
              end
  @cpu_model = if (@cpu_model == UNSET_VALUE) && (@cpu_mode == 'custom')
                 'qemu64'
               elsif @cpu_mode != 'custom'
                 ''
               else
                 @cpu_model
    end
  @cpu_topology = {} if @cpu_topology == UNSET_VALUE
  @cpu_affinity = {} if @cpu_affinity == UNSET_VALUE
  @cpu_fallback = 'allow' if @cpu_fallback == UNSET_VALUE
  @cpu_features = [] if @cpu_features == UNSET_VALUE
  @shares = nil if @shares == UNSET_VALUE
  @features = ['acpi','apic','pae'] if @features == UNSET_VALUE
  @features_hyperv = [] if @features_hyperv == UNSET_VALUE
  @clock_offset = 'utc' if @clock_offset == UNSET_VALUE
  @clock_timers = [] if @clock_timers == UNSET_VALUE
  @launchsecurity_data = nil if @launchsecurity_data == UNSET_VALUE
  @numa_nodes = @numa_nodes == UNSET_VALUE ? nil : _generate_numa
  @loader = nil if @loader == UNSET_VALUE
  @nvram = nil if @nvram == UNSET_VALUE
  @machine_virtual_size = nil if @machine_virtual_size == UNSET_VALUE
  @disk_device = @disk_bus == 'scsi' ? 'sda' : 'vda' if @disk_device == UNSET_VALUE
  @disk_bus = @disk_device.start_with?('sd') ? 'scsi' : 'virtio' if @disk_bus == UNSET_VALUE
  if @disk_controller_model == UNSET_VALUE
    if @disk_bus == 'scsi' or @disk_device.start_with?('sd') == 'sd'
      @disk_controller_model = 'virtio-scsi'
    else
      @disk_controller_model = nil
    end
  end
  @disk_address_type = nil if @disk_address_type == UNSET_VALUE
  @disk_driver_opts = {} if @disk_driver_opts == UNSET_VALUE
  @nic_model_type = nil if @nic_model_type == UNSET_VALUE
  @nested = false if @nested == UNSET_VALUE
  @volume_cache = nil if @volume_cache == UNSET_VALUE
  @kernel = nil if @kernel == UNSET_VALUE
  @cmd_line = '' if @cmd_line == UNSET_VALUE
  @initrd = nil if @initrd == UNSET_VALUE
  @dtb = nil if @dtb == UNSET_VALUE
  @graphics_type = 'vnc' if @graphics_type == UNSET_VALUE
  @graphics_autoport = @graphics_type != 'spice' && @graphics_port == UNSET_VALUE ? 'yes' : nil
  if (@graphics_type != 'vnc' && @graphics_type != 'spice') ||
     @graphics_passwd == UNSET_VALUE
    @graphics_passwd = nil
  end
  @graphics_port = @graphics_type == 'spice' ? nil : -1 if @graphics_port == UNSET_VALUE
  @graphics_websocket = @graphics_type == 'spice' ? nil : -1 if @graphics_websocket == UNSET_VALUE
  @graphics_ip = @graphics_type == 'spice' ? nil : '127.0.0.1' if @graphics_ip == UNSET_VALUE
  @video_accel3d = false if @video_accel3d == UNSET_VALUE
  @graphics_gl = @video_accel3d if @graphics_gl == UNSET_VALUE
  @video_type = @video_accel3d ? 'virtio' : 'cirrus' if @video_type == UNSET_VALUE
  @video_vram = 16384 if @video_vram == UNSET_VALUE
  @sound_type = nil if @sound_type == UNSET_VALUE
  @keymap = 'en-us' if @keymap == UNSET_VALUE
  @kvm_hidden = false if @kvm_hidden == UNSET_VALUE
  @tpm_model = 'tpm-tis' if @tpm_model == UNSET_VALUE
  @tpm_type = 'passthrough' if @tpm_type == UNSET_VALUE
  @tpm_path = nil if @tpm_path == UNSET_VALUE
  @tpm_version = nil if @tpm_version == UNSET_VALUE
  @memballoon_enabled = nil if @memballoon_enabled == UNSET_VALUE
  @memballoon_model = 'virtio' if @memballoon_model == UNSET_VALUE
  @memballoon_pci_bus = '0x00' if @memballoon_pci_bus == UNSET_VALUE
  @memballoon_pci_slot = '0x0f' if @memballoon_pci_slot == UNSET_VALUE
  @nic_adapter_count = 8 if @nic_adapter_count == UNSET_VALUE
  @emulator_path = nil if @emulator_path == UNSET_VALUE

  @sysinfo = {} if @sysinfo == UNSET_VALUE

  # Boot order
  @boot_order = [] if @boot_order == UNSET_VALUE

  # Storage
  @disks = [] if @disks == UNSET_VALUE
  @cdroms = [] if @cdroms == UNSET_VALUE
  @cdroms.map! do |cdrom|
    cdrom[:dev] = _get_cdrom_dev(@cdroms) if cdrom[:dev].nil?
    cdrom
  end
  @floppies = [] if @floppies == UNSET_VALUE
  @floppies.map! do |floppy|
    floppy[:dev] = _get_floppy_dev(@floppies) if floppy[:dev].nil?
    floppy
  end

  # Inputs
  @inputs = [{ type: 'mouse', bus: 'ps2' }] if @inputs == UNSET_VALUE

  # Channels
  @channels = [] if @channels == UNSET_VALUE
  if @qemu_use_agent == true
    if @channels.all? { |channel| !channel.fetch(:target_name, '').start_with?('org.qemu.guest_agent.') }
      channel(:type => 'unix', :target_name => 'org.qemu.guest_agent.0', :target_type => 'virtio')
    end
  end
  if @graphics_type == 'spice'
    if @channels.all? { |channel| !channel.fetch(:target_name, '').start_with?('com.redhat.spice.') }
      channel(:type => 'spicevmc', :target_name => 'com.redhat.spice.0', :target_type => 'virtio')
    end
  end

  # filter channels of anything explicitly disabled so it's possible to inject an entry to
  # avoid the automatic addition of the guest_agent above, and disable it from subsequent use.
  @channels = @channels.reject { |channel| channel[:disabled] }.tap {|channel| channel.delete(:disabled) }

  # PCI device passthrough
  @pcis = [] if @pcis == UNSET_VALUE

  # Random number generator passthrough
  @rng = {} if @rng == UNSET_VALUE

  # Watchdog device
  @watchdog_dev = {} if @watchdog_dev == UNSET_VALUE

  # USB device passthrough
  @usbs = [] if @usbs == UNSET_VALUE

  # Redirected devices
  @redirdevs = [] if @redirdevs == UNSET_VALUE
  @redirfilters = [] if @redirfilters == UNSET_VALUE

  # USB controller
  if @usbctl_dev == UNSET_VALUE
    @usbctl_dev = if !@usbs.empty? or !@redirdevs.empty? then {:model => 'qemu-xhci'} else {} end
  end

  # smartcard device
  @smartcard_dev = {} if @smartcard_dev == UNSET_VALUE

  # Suspend mode
  @suspend_mode = 'pause' if @suspend_mode == UNSET_VALUE

  # Autostart
  @autostart = false if @autostart == UNSET_VALUE

  # Attach mgmt network
  @mgmt_attach = true if @mgmt_attach == UNSET_VALUE

  # Additional QEMU commandline arguments
  @qemu_args = [] if @qemu_args == UNSET_VALUE

  # Additional QEMU commandline environment variables
  @qemu_env = {} if @qemu_env == UNSET_VALUE

  @qemu_use_agent = false if @qemu_use_agent == UNSET_VALUE

  @serials = [{:type => 'pty', :source => nil}] if @serials == UNSET_VALUE

  @host_device_exclude_prefixes = ['docker', 'macvtap', 'virbr', 'vnet'] if @host_device_exclude_prefixes == UNSET_VALUE
end

#hyperv_feature(options = {}) ⇒ Object



462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
# File 'lib/vagrant-libvirt/config.rb', line 462

def hyperv_feature(options = {})
  if options[:name].nil? || options[:state].nil?
    raise 'Feature name AND state must be specified'
  end

  if options[:name] == 'spinlocks' && options[:retries].nil?
    raise 'Feature spinlocks requires retries parameter'
  end

  @features_hyperv = []  if @features_hyperv == UNSET_VALUE

  if options[:name] == 'spinlocks'
    @features_hyperv.push(name:   options[:name],
                       state: options[:state],
                       retries: options[:retries])
  else
    @features_hyperv.push(name:   options[:name],
                       state: options[:state])
  end
end

#input(options = {}) ⇒ Object



572
573
574
575
576
577
578
579
580
581
# File 'lib/vagrant-libvirt/config.rb', line 572

def input(options = {})
  if options[:type].nil? || options[:bus].nil?
    raise 'Input type AND bus must be specified'
  end

  @inputs = [] if @inputs == UNSET_VALUE

  @inputs.push(type: options[:type],
               bus:  options[:bus])
end

#launchsecurity(options = {}) ⇒ Object



560
561
562
563
564
565
566
567
568
569
570
# File 'lib/vagrant-libvirt/config.rb', line 560

def launchsecurity(options = {})
  if options.fetch(:type) != 'sev'
    raise "Launch security type only supports SEV. Explicitly set 'sev' as a type"
  end

  @launchsecurity_data = {}
  @launchsecurity_data[:type] = options[:type]
  @launchsecurity_data[:cbitpos] = options[:cbitpos] || 47
  @launchsecurity_data[:reducedPhysBits] = options[:reducedPhysBits] || 1
  @launchsecurity_data[:policy] = options[:policy] || "0x0003"
end

#memorybacking(option, config = {}) ⇒ Object



526
527
528
529
530
531
532
533
534
535
536
537
538
539
# File 'lib/vagrant-libvirt/config.rb', line 526

def memorybacking(option, config = {})
  case option
  when :source
    raise 'Source type must be specified' if config[:type].nil?
  when :access
    raise 'Access mode must be specified' if config[:mode].nil?
  when :allocation
    raise 'Allocation mode must be specified' if config[:mode].nil?
  end

  @memory_backing = [] if @memory_backing == UNSET_VALUE
  @memory_backing.push(name: option,
                       config: config)
end

#memtune(config = {}) ⇒ Object



541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
# File 'lib/vagrant-libvirt/config.rb', line 541

def memtune(config={})
  if config[:type].nil?
    raise "Missing memtune type"
  end

  unless ['hard_limit', 'soft_limit', 'swap_hard_limit'].include? config[:type]
    raise "Memtune type '#{config[:type]}' not allowed (hard_limit, soft_limit, swap_hard_limit are allowed)"
  end

  if config[:value].nil?
    raise "Missing memtune value"
  end

  opts = config[:options] || {}
  opts[:unit] = opts[:unit] || "KiB"

  @memtunes[config[:type]] = { value: config[:value], config: opts }
end

#merge(other) ⇒ Object



1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
# File 'lib/vagrant-libvirt/config.rb', line 1258

def merge(other)
  super.tap do |result|
    result.boot_order = other.boot_order != [] ? other.boot_order : boot_order

    c = disks.dup
    c += other.disks
    result.disks = c

    c = cdroms.dup
    c += other.cdroms
    result.cdroms = c

    c = floppies.dup
    c += other.floppies
    result.floppies = c

    result.memtunes = memtunes.merge(other.memtunes)

    result.disk_driver_opts = disk_driver_opts.merge(other.disk_driver_opts)

    result.inputs = inputs != UNSET_VALUE ? inputs.dup + (other.inputs != UNSET_VALUE ? other.inputs : []) : other.inputs

    c = sysinfo == UNSET_VALUE ? {} : sysinfo.dup
    c.merge!(other.sysinfo) { |_k, x, y| x.respond_to?(:each_pair) ? x.merge(y) : x + y } if other.sysinfo != UNSET_VALUE
    result.sysinfo = c

    c = clock_timers.dup
    c += other.clock_timers
    result.clock_timers = c

    c = qemu_env != UNSET_VALUE ? qemu_env.dup : {}
    c.merge!(other.qemu_env) if other.qemu_env != UNSET_VALUE
    result.qemu_env = c

    if serials != UNSET_VALUE
      s = serials.dup
      s += other.serials
      result.serials = s
    end
  end
end

#pci(options = {}) ⇒ Object



617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
# File 'lib/vagrant-libvirt/config.rb', line 617

def pci(options = {})
  if options[:bus].nil? || options[:slot].nil? || options[:function].nil?
    raise 'Bus AND slot AND function must be specified. Check `lspci` for that numbers.'
  end

  @pcis = [] if @pcis == UNSET_VALUE

  if options[:domain].nil?
    pci_domain = '0x0000'
  else
    pci_domain = options[:domain]
  end

  @pcis.push(domain:          pci_domain,
             bus:             options[:bus],
             slot:            options[:slot],
             function:        options[:function],
             guest_domain:    options[:guest_domain],
             guest_bus:       options[:guest_bus],
             guest_slot:      options[:guest_slot],
             guest_function:  options[:guest_function])
end

#qemuargs(options = {}) ⇒ Object



820
821
822
823
824
# File 'lib/vagrant-libvirt/config.rb', line 820

def qemuargs(options = {})
  @qemu_args = [] if @qemu_args == UNSET_VALUE

  @qemu_args << options if options[:value]
end

#qemuenv(options = {}) ⇒ Object



826
827
828
829
830
# File 'lib/vagrant-libvirt/config.rb', line 826

def qemuenv(options = {})
  @qemu_env = {} if @qemu_env == UNSET_VALUE

  @qemu_env.merge!(options)
end

#random(options = {}) ⇒ Object



607
608
609
610
611
612
613
614
615
# File 'lib/vagrant-libvirt/config.rb', line 607

def random(options = {})
  if !options[:model].nil? && options[:model] != 'random'
    raise 'The only supported rng backend is "random".'
  end

  @rng = {} if @rng == UNSET_VALUE

  @rng[:model] = options[:model]
end

#redirdev(options = {}) ⇒ Object



681
682
683
684
685
686
687
# File 'lib/vagrant-libvirt/config.rb', line 681

def redirdev(options = {})
  raise 'Type must be specified.' if options[:type].nil?

  @redirdevs = [] if @redirdevs == UNSET_VALUE

  @redirdevs.push(type: options[:type])
end

#redirfilter(options = {}) ⇒ Object



689
690
691
692
693
694
695
696
697
698
699
# File 'lib/vagrant-libvirt/config.rb', line 689

def redirfilter(options = {})
  raise 'Option allow must be specified.' if options[:allow].nil?

  @redirfilters = [] if @redirfilters == UNSET_VALUE

  @redirfilters.push(class: options[:class] || -1,
                     vendor: options[:vendor] || -1,
                     product: options[:product] || -1,
                     version: options[:version] || -1,
                     allow: options[:allow])
end

#serial(options = {}) ⇒ Object



832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
# File 'lib/vagrant-libvirt/config.rb', line 832

def serial(options={})
  @serials = [] if @serials == UNSET_VALUE

  options = {
    :type => "pty",
    :source => nil,
  }.merge(options)

  serial = {
    :type => options[:type],
    :source => options[:source],
  }

  @serials << serial
end

#smartcard(options = {}) ⇒ Object



701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
# File 'lib/vagrant-libvirt/config.rb', line 701

def smartcard(options = {})
  if options[:mode].nil?
    raise 'Option mode must be specified.'
  elsif options[:mode] != 'passthrough'
    raise 'Currently only passthrough mode is supported!'
  elsif options[:type] == 'tcp' && (options[:source_mode].nil? || options[:source_host].nil? || options[:source_service].nil?)
    raise 'If using type "tcp", option "source_mode", "source_host" and "source_service" must be specified.'
  end

  if @smartcard_dev == UNSET_VALUE
    @smartcard_dev = {}
  end

  @smartcard_dev[:mode] = options[:mode]
  @smartcard_dev[:type] = options[:type] || 'spicevmc'
  @smartcard_dev[:source_mode] = options[:source_mode] if @smartcard_dev[:type] == 'tcp'
  @smartcard_dev[:source_host] = options[:source_host] if @smartcard_dev[:type] == 'tcp'
  @smartcard_dev[:source_service] = options[:source_service] if @smartcard_dev[:type] == 'tcp'
end

#storage(storage_type, options = {}) ⇒ Object

NOTE: this will run twice for each time it’s needed- keep it idempotent



728
729
730
731
732
733
734
735
736
737
738
739
# File 'lib/vagrant-libvirt/config.rb', line 728

def storage(storage_type, options = {})
  if storage_type == :file
    case options[:device]
    when :cdrom
      _handle_cdrom_storage(options)
    when :floppy
      _handle_floppy_storage(options)
    else
      _handle_disk_storage(options)
    end
  end
end

#usb(options = {}) ⇒ Object



667
668
669
670
671
672
673
674
675
676
677
678
679
# File 'lib/vagrant-libvirt/config.rb', line 667

def usb(options = {})
  if (options[:bus].nil? || options[:device].nil?) && options[:vendor].nil? && options[:product].nil?
    raise 'Bus and device and/or vendor and/or product must be specified. Check `lsusb` for these.'
  end

  @usbs = [] if @usbs == UNSET_VALUE

  @usbs.push(bus:           options[:bus],
             device:        options[:device],
             vendor:        options[:vendor],
             product:       options[:product],
             startupPolicy: options[:startupPolicy])
end

#usb_controller(options = {}) ⇒ Object



654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/vagrant-libvirt/config.rb', line 654

def usb_controller(options = {})
  if options[:model].nil?
    raise 'USB controller model must be specified.'
  end

  if @usbctl_dev == UNSET_VALUE
      @usbctl_dev = {}
  end

  @usbctl_dev[:model] = options[:model]
  @usbctl_dev[:ports] = options[:ports] if options[:ports]
end

#validate(machine) ⇒ Object



1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
# File 'lib/vagrant-libvirt/config.rb', line 1134

def validate(machine)
  errors = _detected_errors

  unless @machine_arch.nil? || ARCH_SUPPORT_CPU.include?(@machine_arch.downcase)
    unsupported = [:cpu_mode, :cpu_model, :nested, :cpu_features, :cpu_topology, :numa_nodes]
    cpu_support_required_by = unsupported.select { |x|
      value = instance_variable_get("@#{x.to_s}")
      next if value.nil?  # not set
      is_bool = !!value == value
      next if is_bool && !value  # boolean and set to false
      next if !is_bool && value.empty?  # not boolean, but empty '', [], {}
      true
    }

    unless cpu_support_required_by.empty?
      errors << "Architecture #{@machine_arch} does not support /domain/cpu XML, which is required when setting the config options #{cpu_support_required_by.join(", ")}"
    end
  end

  # technically this shouldn't occur, but ensure that if somehow it does, it gets rejected.
  if @cpu_mode == 'host-passthrough' && @cpu_model != ''
    errors << "cannot set cpu_model with cpu_mode of 'host-passthrough'. leave model unset or switch mode."
  end

  unless @cpu_model != '' || @cpu_features.empty?
    errors << "cannot set cpu_features with cpu_model unset, please set a model or skip setting features."
  end

  # The @uri and @qemu_use_session should not conflict
  uri = _parse_uri(@uri)
  if (uri.scheme.start_with? "qemu") && (uri.path.include? "session")
    if @qemu_use_session != true
      errors << "the URI and qemu_use_session configuration conflict: uri:'#{@uri}' qemu_use_session:'#{@qemu_use_session}'"
    end
  end

  unless @qemu_use_agent == true || @qemu_use_agent == false
    errors << "libvirt.qemu_use_agent must be a boolean."
  end

  if !@nvram.nil? && @loader.nil?
    errors << "use of 'nvram' requires a 'loader' to be specified, please add one to the configuration"
  end

  if @qemu_use_agent == true
    # if qemu agent is used to obtain domain ip configuration, at least
    # one qemu channel has to be configured. As there are various options,
    # error out and leave configuration to the user
    unless machine.provider_config.channels.any? { |channel| channel[:target_name].start_with?("org.qemu.guest_agent") }
      errors << "qemu agent option enabled, but no qemu agent channel configured: please add at least one qemu agent channel to vagrant config"
    end
  end

  machine.provider_config.disks.each do |disk|
    if disk[:path] && (disk[:path][0] == '/')
      errors << "absolute volume paths like '#{disk[:path]}' not yet supported"
    end
  end

  machine.provider_config.serials.each do |serial|
    if serial[:source] and serial[:source][:path].nil?
      errors << "serial :source requires :path to be defined"
    end
  end

  # this won't be able to fully resolve the disks until the box has
  # been downloaded and any devices that need to be assigned to the
  # disks contained have been allocated
  disk_resolver = ::VagrantPlugins::ProviderLibvirt::Util::DiskDeviceResolver.new
  begin
    disk_resolver.resolve(machine.provider_config.disks)
  rescue Errors::VagrantLibvirtError => e
    errors << "#{e}"
  end

  machine.config.vm.networks.each_with_index do |network, index|
    type, opts = network

    if opts[:mac]
      if opts[:mac] =~ /\A([0-9a-fA-F]{12})\z/
        opts[:mac] = opts[:mac].scan(/../).join(':')
      end
      unless opts[:mac] =~ /\A([0-9a-fA-F]{2}:){5}([0-9a-fA-F]{2})\z/
        errors << "Configured NIC MAC '#{opts[:mac]}' is not in 'xx:xx:xx:xx:xx:xx' or 'xxxxxxxxxxxx' format"
      end
    end

    # only interested in public networks where portgroup is nil, as then source will be a host device
    if type == :public_network && opts[:portgroup] == nil
      devices = host_devices(machine)
      hostdev = opts.fetch(:dev, 'eth0')
      if !devices.include?(hostdev)
        errors << "network configuration #{index} for machine #{machine.name} is a public_network referencing host device '#{hostdev}' which does not exist, consider adding ':dev => ....' referencing one of #{devices.join(", ")}"
      end
    end
  end

  if !machine.provider_config.volume_cache.nil? and machine.provider_config.volume_cache != UNSET_VALUE
    machine.ui.warn("Libvirt Provider: volume_cache is deprecated. Use disk_driver :cache => '#{machine.provider_config.volume_cache}' instead.")

    if !machine.provider_config.disk_driver_opts.empty?
      machine.ui.warn("Libvirt Provider: volume_cache has no effect when disk_driver is defined.")
    end
  end

  # if run via a session, then qemu will be run with user permissions, make sure the user
  # has permissions to access the host paths otherwise there will be an error triggered
  if machine.provider_config.qemu_use_session
    synced_folders(machine).fetch(:"9p", []).each do |_, options|
      unless File.readable?(options[:hostpath])
        errors << "9p synced_folder cannot mount host path #{options[:hostpath]} into guest #{options[:guestpath]} when using qemu session as executing user does not have permissions to read the directory on the user."
      end
    end

    unless synced_folders(machine)[:"virtiofs"].nil?
      machine.ui.warn("Note: qemu session may not support virtiofs for synced_folders, use 9p or enable use of qemu:///system context unless you know what you are doing")
    end
  end

  errors = validate_sysinfo(machine, errors)

  { 'Libvirt Provider' => errors }
end

#watchdog(options = {}) ⇒ Object



640
641
642
643
644
645
646
647
648
649
650
651
# File 'lib/vagrant-libvirt/config.rb', line 640

def watchdog(options = {})
  if options[:model].nil?
    raise 'Model must be specified.'
  end

  if @watchdog_dev == UNSET_VALUE
      @watchdog_dev = {}
  end

  @watchdog_dev[:model] = options[:model]
  @watchdog_dev[:action] = options[:action] || 'reset'
end