Module: Veewee::Provider::Kvm::BoxCommand

Included in:
Box
Defined in:
lib/veewee/provider/kvm/box/up.rb,
lib/veewee/provider/kvm/box/halt.rb,
lib/veewee/provider/kvm/box/build.rb,
lib/veewee/provider/kvm/box/create.rb,
lib/veewee/provider/kvm/box/destroy.rb,
lib/veewee/provider/kvm/box/poweroff.rb,
lib/veewee/provider/kvm/box/helper/ip.rb,
lib/veewee/provider/kvm/box/validate_kvm.rb,
lib/veewee/provider/kvm/box/helper/status.rb,
lib/veewee/provider/kvm/box/helper/ssh_options.rb,
lib/veewee/provider/kvm/box/helper/console_type.rb

Instance Method Summary collapse

Instance Method Details

#add_floppyObject



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
# File 'lib/veewee/provider/kvm/box/create.rb', line 61

def add_floppy
  env.logger.info 'Adding floppy disk'
  # Get a raw libvirt connection
  conn = @connection.client

  # Retrieve the domain
  domain=conn.lookup_domain_by_name(name)

  # Retrieve the existing XML from the domain
  domain_xml=domain.xml_desc

  # Convert the xml nokogiri doc
  domain_doc=Nokogiri::XML(domain_xml)

  # Find the device section
  devices=domain_doc.xpath('/domain/devices').first
  # The floppy xml representation
  floppy_xml="<disk type='file' device='floppy'><driver name='qemu' type='raw'/><source file='"+
      File.join(definition.path, "virtualfloppy.img") +
      "'/><target dev='fda' bus='fdc'/><address type='drive' controller='0' bus='0' unit='0'/></disk>
  <controller type='fdc' index='0'>"

  # Convert the floppy xml to nokogiri
  floppy_doc=Nokogiri::XML(floppy_xml)

  # Add the floppy to the devices section
  devices.add_child(floppy_doc.root)

  # Get the raw xml of the changed document
  new_xml=domain_doc.to_xml

  # Undefine the existing domain
  domain.undefine

  # Re-define the domain
  conn.define_domain_xml(new_xml)
end

#add_virtio_driversObject



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/veewee/provider/kvm/box/create.rb', line 99

def add_virtio_drivers
  env.logger.info 'Adding virtio drivers for windows system to the virtual machine'
  # Get a raw libvirt connection
  conn = @connection.client

  # Retrieve the domain
  domain=conn.lookup_domain_by_name(name)

  # Retrieve the existing XML from the domain
  domain_xml=domain.xml_desc

  # Convert the xml nokogiri doc
  domain_doc=Nokogiri::XML(domain_xml)

  # Find the device section
  devices=domain_doc.xpath('/domain/devices').first

  # get latest version of virtio drivers
  url ='http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/bin/'
  filename = open(url).read.scan(/\"(virtio-win-.*.iso)\"/).first.first
  download_iso(url + filename, filename)
  path = File.join(env.config.veewee.iso_dir, filename)

  # The disk xml representation
  disk_xml="<disk type='file' device='cdrom'><driver name='qemu' type='raw'/><source file='" +
      path + "'/><target dev='hdd' bus='ide'/></disk>"

  # Convert the disk xml to nokogiri
  disk_doc=Nokogiri::XML(disk_xml)

  # Add the floppy to the devices section
  devices.add_child(disk_doc.root)

  # Get the raw xml of the changed document
  new_xml=domain_doc.to_xml

  # Undefine the existing domain
  domain.undefine

  # Re-define the domain
  conn.define_domain_xml(new_xml)

  env.logger.info 'Add search path for virtio drivers to Autounattend.xml'
  # parse Autoattend.xml to document
  FileUtils.copy(File.join(definition.path, 'Autounattend.xml'), File.join(definition.path, 'Autounattend.xml.virtio'))
  doc = Nokogiri::XML.parse(File.read(File.join(definition.path, 'Autounattend.xml')))
  # determine platform and windows version
  platform = definition.os_type_id.end_with?("_64") ? "amd64" : "x86"
  version = case definition.os_type_id.downcase
              when /windows-?7/
                'win7'
              when /windows-?2008/
                'win7'
              when /windows-?8/
                'win8'
              when /xp/
                'xp'
              when /vista/
                'vista'
              else
                raise 'could not determine windows version'
            end
  # create new element
  component=Nokogiri::XML(%Q|<component name="Microsoft-Windows-PnpCustomizationsWinPE"
processorArchitecture="#{platform}" publicKeyToken="31bf3856ad364e35"
language="neutral" versionScope="nonSxS"
xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DriverPaths>
<PathAndCredentials wcm:keyValue="1" wcm:action="add">
<Path>e:\\#{version}\\#{platform}</Path>
</PathAndCredentials>
</DriverPaths>
</component>|)
  doc.xpath('//unattend:settings[@pass="windowsPE"]', 'unattend' => 'urn:schemas-microsoft-com:unattend').first.add_child component.root

  file = File.open(File.join(definition.path, 'Autounattend.xml'), 'w')
  file.write(doc)
  file.close

end

#build(options) ⇒ Object



5
6
7
# File 'lib/veewee/provider/kvm/box/build.rb', line 5

def build(options)
  super(options)
end

#console_type(sequence, type_options = {}) ⇒ Object

Type on the console



10
11
12
13
14
15
# File 'lib/veewee/provider/kvm/box/helper/console_type.rb', line 10

def console_type(sequence,type_options={})
  tcp_port=@connection.servers.all(:name => name).first.display[:port]
  display_port=tcp_port.to_i - 5900
  ui.success "Sending keystrokes to VNC port :#{display_port} - TCP port: #{tcp_port}"
  vnc_type(sequence,"127.0.0.1",display_port)
end

#create(options = {}) ⇒ Object

Create a new vm



9
10
11
12
13
14
15
16
17
# File 'lib/veewee/provider/kvm/box/create.rb', line 9

def create(options={})
  # Assemble the Virtualmachine and set all the memory and other stuff"
  create_server(options)
  create_volume(options)
  add_virtio_drivers if File.exists?(File.join(definition.path, 'Autounattend.xml'))
  self.create_floppy("virtualfloppy.img")
  FileUtils.move(File.join(definition.path, 'Autounattend.xml.virtio'), File.join(definition.path, 'Autounattend.xml')) if File.exists?(File.join(definition.path, 'Autounattend.xml.virtio'))
  add_floppy unless definition.floppy_files.nil?
end

#create_server(options) ⇒ Object



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
# File 'lib/veewee/provider/kvm/box/create.rb', line 19

def create_server(options)

  # set volume pool name to user specified volume pool and fall back to first available volume pool
  if options["pool_name"]
    raise Veewee::Error, "Specified storage pool #{options["pool_name"]} does not exist" if @connection.pools.select { |pool| pool.name == options["pool_name"] }.empty?
    volume_pool_name = options["pool_name"]
  end
  volume_pool_name ||= @connection.pools.first.name
  env.logger.info "Using storage pool #{volume_pool_name}"

  # set network name to user specified network and fall back to default network or first available network
  if options["network_name"]
    raise Veewee::Error, "Specified network #{options["network_name"]} does not exist" if @connection.networks.select { |net| net.name == options["network_name"] }.empty?
    network_name = options["network_name"]
  end
  network_name ||= "default" unless @connection.networks.select { |net| net.name == 'default' }.empty?
  network_name ||= @connection.networks.first.name
  env.logger.info "Using network #{network_name}"

  # Create the "server"
  attributes = {
      :name => name,
      :memory_size => definition.memory_size.to_i*1024,
      :cpus => definition.cpu_count.to_i,
      :volume_capacity => "#{definition.disk_size}M",
      :domain_type => options['use_emulation'] ? 'qemu' : 'kvm',
      :iso_file => definition.iso_file,
      :arch => definition.os_type_id.end_with?("_64") ? "x86_64" : "i686",
      :iso_dir => env.config.veewee.iso_dir,
      :volume_pool_name => volume_pool_name,
      :volume_format_type => definition.disk_format,
      :network_nat_network => network_name
  }

  @connection.servers.create(attributes)
end

#create_volume(options) ⇒ Object

Create the volume of a new vm



57
58
59
# File 'lib/veewee/provider/kvm/box/create.rb', line 57

def create_volume(options)
  # Creating the volume is part of the server creation
end

#destroy(options = {}) ⇒ Object

Destroy a vm



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/veewee/provider/kvm/box/destroy.rb', line 6

def destroy(options={})
  unless exists_vm? or exists_volume?
    env.ui.error "Error:: You tried to destroy a non-existing box '#{name}'"
    raise Veewee::Error,"Error:: You tried to destroy a non-existing box '#{name}'"
  end

  self.poweroff if running?
  destroy_vm if exists_vm?

  vol_exists = exists_volume?
  env.logger.info "Volume exists?: #{vol_exists}"
  destroy_volume if vol_exists
end

#destroy_vmObject



20
21
22
23
# File 'lib/veewee/provider/kvm/box/destroy.rb', line 20

def destroy_vm
  matched_servers=@connection.servers.all(:name => name)
  matched_servers.first.destroy() unless matched_servers.nil?
end

#destroy_volumeObject



25
26
27
# File 'lib/veewee/provider/kvm/box/destroy.rb', line 25

def destroy_volume
  @connection.volumes.all(:name => @volume_name).first.destroy
end

#exists?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/veewee/provider/kvm/box/helper/status.rb', line 13

def exists?
  exists_volume? || exists_vm?
end

#exists_vm?Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
# File 'lib/veewee/provider/kvm/box/helper/status.rb', line 21

def exists_vm?
  begin
    @connection.list_domains(:name => name)
  rescue Libvirt::RetrieveError
    false
  end
end

#exists_volume?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/veewee/provider/kvm/box/helper/status.rb', line 17

def exists_volume?
  !@connection.list_volumes(:name => @volume_name).first.empty?
end

#halt(options = {}) ⇒ Object



6
7
8
9
# File 'lib/veewee/provider/kvm/box/halt.rb', line 6

def halt(options={})
  matched_servers=@connection.servers.all(:name => name)
  matched_servers.first.halt unless matched_servers.nil?
end

#ip_addressObject



5
6
7
8
9
# File 'lib/veewee/provider/kvm/box/helper/ip.rb', line 5

def ip_address
  ip=@connection.servers.all(:name => "#{name}").first.public_ip_address
  return [*ip].first unless ip.nil?
  return ip
end

#poweroff(options = {}) ⇒ Object



6
7
8
9
# File 'lib/veewee/provider/kvm/box/poweroff.rb', line 6

def poweroff(options={})
  matched_servers=@connection.servers.all(:name => name)
  matched_servers.first.stop unless matched_servers.nil?
end

#running?Boolean

Returns:

  • (Boolean)


5
6
7
8
9
10
11
# File 'lib/veewee/provider/kvm/box/helper/status.rb', line 5

def running?
  if exists_vm?
    @connection.servers.all(:name => name).first.ready?
  else
    false
  end
end

#ssh_optionsObject



6
7
8
9
10
11
12
13
14
# File 'lib/veewee/provider/kvm/box/helper/ssh_options.rb', line 6

def ssh_options
  ssh_options={
    :user => definition.ssh_user,
    :port => 22,
    :password => definition.ssh_password,
    :timeout => definition..to_i
  }
  return ssh_options
end

#stop(options = {}) ⇒ Object



11
12
13
14
# File 'lib/veewee/provider/kvm/box/halt.rb', line 11

def stop(options={})
  matched_servers=@connection.servers.all(:name => name)
  matched_servers.first.stop unless matched_servers.nil?
end

#up(options = {}) ⇒ Object



6
7
8
9
# File 'lib/veewee/provider/kvm/box/up.rb', line 6

def up(options={})
  matched_servers=@connection.servers.all(:name => name)
  matched_servers.first.start unless matched_servers.nil?
end

#validate_kvm(options) ⇒ Object



6
7
8
9
10
# File 'lib/veewee/provider/kvm/box/validate_kvm.rb', line 6

def validate_kvm(options)

  validate_tags( [ 'kvm', 'puppet', 'chef'],options)

end