domain.go 5.2 KB
Newer Older
T
Thomas Stromberg 已提交
1 2
// +build linux

M
Matt Rickard 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
Copyright 2016 The Kubernetes Authors All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package kvm

import (
	"bytes"
23
	"crypto/rand"
M
Matt Rickard 已提交
24
	"fmt"
25
	"net"
M
Matt Rickard 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
	"text/template"

	libvirt "github.com/libvirt/libvirt-go"
	"github.com/pkg/errors"
)

const domainTmpl = `
<domain type='kvm'>
  <name>{{.MachineName}}</name> 
  <memory unit='MB'>{{.Memory}}</memory>
  <vcpu>{{.CPU}}</vcpu>
  <features>
    <acpi/>
    <apic/>
    <pae/>
41
    {{if .Hidden}}
A
Alasdair Tran 已提交
42 43 44
    <kvm>
      <hidden state='on'/>
    </kvm>
45
    {{end}}
M
Matt Rickard 已提交
46
  </features>
47
  <cpu mode='host-passthrough'/>
M
Matt Rickard 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  <os>
    <type>hvm</type>
    <boot dev='cdrom'/>
    <boot dev='hd'/>
    <bootmenu enable='no'/>
  </os>
  <devices>
    <disk type='file' device='cdrom'>
      <source file='{{.ISO}}'/>
      <target dev='hdc' bus='scsi'/>
      <readonly/>
    </disk>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw' cache='default' io='threads' />
      <source file='{{.DiskPath}}'/>
      <target dev='hda' bus='virtio'/>
    </disk>
    <interface type='network'>
      <source network='{{.Network}}'/>
67
      <mac address='{{.MAC}}'/>
M
Matt Rickard 已提交
68 69 70 71
      <model type='virtio'/>
    </interface>
    <interface type='network'>
      <source network='{{.PrivateNetwork}}'/>
72
      <mac address='{{.PrivateMAC}}'/>
M
Matt Rickard 已提交
73 74 75 76 77
      <model type='virtio'/>
    </interface>
    <serial type='pty'>
      <target port='0'/>
    </serial>
78 79
    <console type='pty'>
      <target type='serial' port='0'/>
M
Matt Rickard 已提交
80 81 82 83
    </console>
    <rng model='virtio'>
      <backend model='random'>/dev/random</backend>
    </rng>
R
Rohit Agarwal 已提交
84 85 86
    {{if .GPU}}
    {{.DevicesXML}}
    {{end}}
M
Matt Rickard 已提交
87 88 89 90 91 92 93 94
  </devices>
</domain>
`

const connectionErrorText = `
Error connecting to libvirt socket.  Have you set up libvirt correctly?

# Install libvirt and qemu-kvm on your system, e.g.
95 96
# Debian/Ubuntu (for older Debian/Ubuntu versions, you may have to use libvirt-bin instead of libvirt-clients and libvirt-daemon-system)
$ sudo apt install libvirt-clients libvirt-daemon-system qemu-kvm
M
Matt Rickard 已提交
97 98 99
# Fedora/CentOS/RHEL
$ sudo yum install libvirt-daemon-kvm qemu-kvm

100
# Add yourself to the libvirt group so you don't need to sudo
D
dlorenc 已提交
101
# NOTE: For older Debian/Ubuntu versions change the group to [libvirtd]
M
Matt Rickard 已提交
102 103 104
$ sudo usermod -a -G libvirt $(whoami)

# Update your current session for the group change to take effect
D
dlorenc 已提交
105
# NOTE: For older Debian/Ubuntu versions change the group to [libvirtd]
M
Matt Rickard 已提交
106 107
$ newgrp libvirt

108
Visit https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-driver for more information.
M
Matt Rickard 已提交
109 110
`

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
func randomMAC() (net.HardwareAddr, error) {
	buf := make([]byte, 6)
	_, err := rand.Read(buf)
	if err != nil {
		return nil, err
	}
	// We unset the first and second least significant bits (LSB) of the MAC
	//
	// The LSB of the first octet
	// 0 for unicast
	// 1 for multicast
	//
	// The second LSB of the first octet
	// 0 for universally administered addresses
	// 1 for locally administered addresses
T
tstromberg 已提交
126
	buf[0] &= 0xfc
127 128 129
	return buf, nil
}

M
Matt Rickard 已提交
130
func (d *Driver) getDomain() (*libvirt.Domain, *libvirt.Connect, error) {
131
	conn, err := getConnection(d.ConnectionURI)
M
Matt Rickard 已提交
132 133 134 135 136 137 138 139 140 141 142 143
	if err != nil {
		return nil, nil, errors.Wrap(err, "getting domain")
	}

	dom, err := conn.LookupDomainByName(d.MachineName)
	if err != nil {
		return nil, nil, errors.Wrap(err, "looking up domain")
	}

	return dom, conn, nil
}

144 145
func getConnection(connectionURI string) (*libvirt.Connect, error) {
	conn, err := libvirt.NewConnect(connectionURI)
M
Matt Rickard 已提交
146 147 148 149 150 151 152 153
	if err != nil {
		return nil, errors.Wrap(err, connectionErrorText)
	}

	return conn, nil
}

func closeDomain(dom *libvirt.Domain, conn *libvirt.Connect) error {
T
tstromberg 已提交
154 155
	if err := dom.Free(); err != nil {
		return err
M
Matt Rickard 已提交
156
	}
T
tstromberg 已提交
157 158 159 160 161
	res, err := conn.Close()
	if res != 0 {
		return fmt.Errorf("CloseConnection() == %d, expected 0", res)
	}
	return err
M
Matt Rickard 已提交
162 163 164
}

func (d *Driver) createDomain() (*libvirt.Domain, error) {
165 166 167 168 169 170 171 172 173
	// create random MAC addresses first for our NICs
	if d.MAC == "" {
		mac, err := randomMAC()
		if err != nil {
			return nil, errors.Wrap(err, "generating mac address")
		}
		d.MAC = mac.String()
	}

174 175 176 177 178 179 180 181
	if d.PrivateMAC == "" {
		mac, err := randomMAC()
		if err != nil {
			return nil, errors.Wrap(err, "generating mac address")
		}
		d.PrivateMAC = mac.String()
	}

182
	// create the XML for the domain using our domainTmpl template
M
Matt Rickard 已提交
183
	tmpl := template.Must(template.New("domain").Parse(domainTmpl))
184 185
	var domainXML bytes.Buffer
	if err := tmpl.Execute(&domainXML, d); err != nil {
M
Matt Rickard 已提交
186 187 188
		return nil, errors.Wrap(err, "executing domain xml")
	}

189
	conn, err := getConnection(d.ConnectionURI)
M
Matt Rickard 已提交
190 191 192 193 194
	if err != nil {
		return nil, errors.Wrap(err, "Error getting libvirt connection")
	}
	defer conn.Close()

195 196
	// define the domain in libvirt using the generated XML
	dom, err := conn.DomainDefineXML(domainXML.String())
M
Matt Rickard 已提交
197
	if err != nil {
198
		return nil, errors.Wrapf(err, "Error defining domain xml: %s", domainXML.String())
M
Matt Rickard 已提交
199 200 201 202
	}

	return dom, nil
}