summaryrefslogtreecommitdiff
path: root/libvirt/resource_cloud_init.go
diff options
context:
space:
mode:
Diffstat (limited to 'libvirt/resource_cloud_init.go')
-rw-r--r--libvirt/resource_cloud_init.go360
1 files changed, 291 insertions, 69 deletions
diff --git a/libvirt/resource_cloud_init.go b/libvirt/resource_cloud_init.go
index 6221ebc5..86c72ac7 100644
--- a/libvirt/resource_cloud_init.go
+++ b/libvirt/resource_cloud_init.go
@@ -1,119 +1,341 @@
package libvirt
import (
+ "encoding/xml"
"fmt"
"log"
+ "net/http"
+ "strconv"
"github.com/hashicorp/terraform/helper/schema"
+ libvirt "github.com/libvirt/libvirt-go"
)
-func resourceCloudInit() *schema.Resource {
- return &schema.Resource{
- Create: resourceCloudInitCreate,
- Read: resourceCloudInitRead,
- Delete: resourceCloudInitDelete,
- Schema: map[string]*schema.Schema{
- "name": &schema.Schema{
- Type: schema.TypeString,
- Required: true,
- ForceNew: true,
- },
- "pool": &schema.Schema{
- Type: schema.TypeString,
- Optional: true,
- Default: "default",
- ForceNew: true,
- },
- "local_hostname": &schema.Schema{
- Type: schema.TypeString,
- Optional: true,
- ForceNew: true,
- },
- "user_data": &schema.Schema{
- Type: schema.TypeString,
- Optional: true,
- ForceNew: true,
- },
- "ssh_authorized_key": &schema.Schema{
- Type: schema.TypeString,
- Optional: true,
- ForceNew: true,
- },
+func volumeCommonSchema() map[string]*schema.Schema {
+ return map[string]*schema.Schema{
+ "name": &schema.Schema{
+ Type: schema.TypeString,
+ Required: true,
+ ForceNew: true,
+ },
+ "pool": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ Default: "default",
+ ForceNew: true,
+ },
+ "source": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ ForceNew: true,
+ },
+ "size": &schema.Schema{
+ Type: schema.TypeInt,
+ Optional: true,
+ Computed: true,
+ ForceNew: true,
+ },
+ "format": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ ForceNew: true,
+ },
+ "base_volume_id": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ ForceNew: true,
+ },
+ "base_volume_pool": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ ForceNew: true,
+ },
+ "base_volume_name": &schema.Schema{
+ Type: schema.TypeString,
+ Optional: true,
+ ForceNew: true,
},
}
}
-func resourceCloudInitCreate(d *schema.ResourceData, meta interface{}) error {
- log.Printf("[DEBUG] creating cloudinit")
+func resourceLibvirtVolume() *schema.Resource {
+ return &schema.Resource{
+ Create: resourceLibvirtVolumeCreate,
+ Read: resourceLibvirtVolumeRead,
+ Delete: resourceLibvirtVolumeDelete,
+ Schema: volumeCommonSchema(),
+ }
+}
+
+func remoteImageSize(url string) (int, error) {
+ response, err := http.Head(url)
+ if err != nil {
+ return 0, err
+ }
+ length, err := strconv.Atoi(response.Header.Get("Content-Length"))
+ if err != nil {
+ return 0, err
+ }
+ return length, nil
+}
+
+func resourceLibvirtVolumeCreate(d *schema.ResourceData, meta interface{}) error {
virConn := meta.(*Client).libvirt
if virConn == nil {
- return fmt.Errorf("The libvirt connection was nil.")
+ return fmt.Errorf("the libvirt connection was nil")
+ }
+
+ poolName := "default"
+ if _, ok := d.GetOk("pool"); ok {
+ poolName = d.Get("pool").(string)
+ }
+
+ PoolSync.AcquireLock(poolName)
+ defer PoolSync.ReleaseLock(poolName)
+
+ pool, err := virConn.LookupStoragePoolByName(poolName)
+ if err != nil {
+ return fmt.Errorf("can't find storage pool '%s'", poolName)
}
+ defer pool.Free()
+
+ // Refresh the pool of the volume so that libvirt knows it is
+ // not longer in use.
+ WaitForSuccess("Error refreshing pool for volume", func() error {
+ return pool.Refresh(0)
+ })
- cloudInit := newCloudInitDef()
- cloudInit.Metadata.LocalHostname = d.Get("local_hostname").(string)
- cloudInit.UserDataRaw = d.Get("user_data").(string)
+ volumeDef := newDefVolume()
- if _, ok := d.GetOk("ssh_authorized_key"); ok {
- sshKey := d.Get("ssh_authorized_key").(string)
- cloudInit.UserData.SSHAuthorizedKeys = append(
- cloudInit.UserData.SSHAuthorizedKeys,
- sshKey)
+ if name, ok := d.GetOk("name"); ok {
+ volumeDef.Name = name.(string)
}
- cloudInit.Name = d.Get("name").(string)
- cloudInit.PoolName = d.Get("pool").(string)
+ volumeFormat := "qcow2"
+ if _, ok := d.GetOk("format"); ok {
+ volumeFormat = d.Get("format").(string)
+ }
+ volumeDef.Target.Format.Type = volumeFormat
+
+ var (
+ img image
+ volume *libvirt.StorageVol = nil
+ )
+
+ // an source image was given, this mean we can't choose size
+ if source, ok := d.GetOk("source"); ok {
+ // source and size conflict
+ if _, ok := d.GetOk("size"); ok {
+ return fmt.Errorf("'size' can't be specified when also 'source' is given (the size will be set to the size of the source image")
+ }
+ if _, ok := d.GetOk("base_volume_id"); ok {
+ return fmt.Errorf("'base_volume_id' can't be specified when also 'source' is given")
+ }
+
+ if _, ok := d.GetOk("base_volume_name"); ok {
+ return fmt.Errorf("'base_volume_name' can't be specified when also 'source' is given")
+ }
- log.Printf("[INFO] cloudInit: %+v", cloudInit)
+ // Check if we already have this image in the pool
+ if len(volumeDef.Name) > 0 {
+ if v, err := pool.LookupStorageVolByName(volumeDef.Name); err != nil {
+ log.Printf("Could not find image %s in pool %s", volumeDef.Name, poolName)
+ } else {
+ volume = v
+ volumeDef, err = newDefVolumeFromLibvirt(volume)
+ if err != nil {
+ return fmt.Errorf("could not get a volume definition from XML for %s: %s", volumeDef.Name, err)
+ }
+ }
+ }
+
+ if img, err = newImage(source.(string)); err != nil {
+ return err
+ }
+
+ // update the image in the description, even if the file has not changed
+ if size, err := img.Size(); err != nil {
+ return err
+ } else {
+ log.Printf("Image %s image is: %d bytes", img, size)
+ volumeDef.Capacity.Unit = "B"
+ volumeDef.Capacity.Value = size
+ }
+ } else {
+ _, noSize := d.GetOk("size")
+ _, noBaseVol := d.GetOk("base_volume_id")
+
+ if noSize && noBaseVol {
+ return fmt.Errorf("'size' needs to be specified if no 'source' or 'base_volume_id' is given")
+ }
+ volumeDef.Capacity.Value = uint64(d.Get("size").(int))
+ }
- key, err := cloudInit.CreateAndUpload(virConn)
+ if baseVolumeId, ok := d.GetOk("base_volume_id"); ok {
+ if _, ok := d.GetOk("size"); ok {
+ return fmt.Errorf("'size' can't be specified when also 'base_volume_id' is given (the size will be set to the size of the backing image")
+ }
+
+ if _, ok := d.GetOk("base_volume_name"); ok {
+ return fmt.Errorf("'base_volume_name' can't be specified when also 'base_volume_id' is given")
+ }
+
+ volume = nil
+ baseVolume, err := virConn.LookupStorageVolByKey(baseVolumeId.(string))
+ if err != nil {
+ return fmt.Errorf("Can't retrieve volume %s", baseVolumeId.(string))
+ }
+ backingStoreDef, err := newDefBackingStoreFromLibvirt(baseVolume)
+ if err != nil {
+ return fmt.Errorf("Could not retrieve backing store %s", baseVolumeId.(string))
+ }
+ volumeDef.BackingStore = &backingStoreDef
+ }
+
+ if baseVolumeName, ok := d.GetOk("base_volume_name"); ok {
+ if _, ok := d.GetOk("size"); ok {
+ return fmt.Errorf("'size' can't be specified when also 'base_volume_name' is given (the size will be set to the size of the backing image")
+ }
+
+ volume = nil
+ baseVolumePool := pool
+ if _, ok := d.GetOk("base_volume_pool"); ok {
+ baseVolumePoolName := d.Get("base_volume_pool").(string)
+ baseVolumePool, err = virConn.LookupStoragePoolByName(baseVolumePoolName)
+ if err != nil {
+ return fmt.Errorf("can't find storage pool '%s'", baseVolumePoolName)
+ }
+ defer baseVolumePool.Free()
+ }
+ baseVolume, err := baseVolumePool.LookupStorageVolByName(baseVolumeName.(string))
+ if err != nil {
+ return fmt.Errorf("Can't retrieve volume %s", baseVolumeName.(string))
+ }
+ backingStoreDef, err := newDefBackingStoreFromLibvirt(baseVolume)
+ if err != nil {
+ return fmt.Errorf("Could not retrieve backing store %s", baseVolumeName.(string))
+ }
+ volumeDef.BackingStore = &backingStoreDef
+ }
+
+ if volume == nil {
+ volumeDefXml, err := xml.Marshal(volumeDef)
+ if err != nil {
+ return fmt.Errorf("Error serializing libvirt volume: %s", err)
+ }
+
+ // create the volume
+ v, err := pool.StorageVolCreateXML(string(volumeDefXml), 0)
+ if err != nil {
+ return fmt.Errorf("Error creating libvirt volume: %s", err)
+ }
+ volume = v
+ defer volume.Free()
+ }
+
+ // we use the key as the id
+ key, err := volume.GetKey()
if err != nil {
- return err
+ return fmt.Errorf("Error retrieving volume key: %s", err)
}
d.SetId(key)
// make sure we record the id even if the rest of this gets interrupted
- d.Partial(true) // make sure we record the id even if the rest of this gets interrupted
+ d.Partial(true)
d.Set("id", key)
d.SetPartial("id")
- // TODO: at this point we have collected more things than the ID, so let's save as many things as we can
d.Partial(false)
- return resourceCloudInitRead(d, meta)
+ log.Printf("[INFO] Volume ID: %s", d.Id())
+
+ // upload source if present
+ if _, ok := d.GetOk("source"); ok {
+ err = img.Import(newCopier(virConn, volume, volumeDef.Capacity.Value), volumeDef)
+ if err != nil {
+ return fmt.Errorf("Error while uploading source %s: %s", img.String(), err)
+ }
+ }
+
+ return resourceLibvirtVolumeRead(d, meta)
}
-func resourceCloudInitRead(d *schema.ResourceData, meta interface{}) error {
+func resourceLibvirtVolumeRead(d *schema.ResourceData, meta interface{}) error {
virConn := meta.(*Client).libvirt
if virConn == nil {
- return fmt.Errorf("The libvirt connection was nil.")
+ return fmt.Errorf("the libvirt connection was nil")
+ }
+
+ volume, err := virConn.LookupStorageVolByKey(d.Id())
+ if err != nil {
+ virErr := err.(libvirt.Error)
+ if virErr.Code != libvirt.ERR_NO_STORAGE_VOL {
+ return fmt.Errorf("Can't retrieve volume %s", d.Id())
+ }
+
+ log.Printf("[INFO] Volume %s not found, attempting to start its pool")
+
+ volId := d.Id()
+ volPoolName := d.Get("pool").(string)
+ volPool, err := virConn.LookupStoragePoolByName(volPoolName)
+ if err != nil {
+ return fmt.Errorf("Error retrieving pool %s for volume %s: %s", volPoolName, volId, err)
+ }
+ defer volPool.Free()
+
+ active, err := volPool.IsActive()
+ if err != nil {
+ return fmt.Errorf("error retrieving status of pool %s for volume %s: %s", volPoolName, volId, err)
+ }
+ if active {
+ return fmt.Errorf("can't retrieve volume %s", d.Id())
+ }
+
+ err = volPool.Create(0)
+ if err != nil {
+ return fmt.Errorf("error starting pool %s: %s", volPoolName, err)
+ }
+
+ // attempt a new lookup
+ volume, err = virConn.LookupStorageVolByKey(d.Id())
+ if err != nil {
+ return fmt.Errorf("second attempt: Can't retrieve volume %s", d.Id())
+ }
+ }
+ defer volume.Free()
+
+ volName, err := volume.GetName()
+ if err != nil {
+ return fmt.Errorf("error retrieving volume name: %s", err)
}
- ci, err := newCloudInitDefFromRemoteISO(virConn, d.Id())
+ volPool, err := volume.LookupPoolByVolume()
if err != nil {
- return fmt.Errorf("Error while retrieving remote ISO: %s", err)
+ return fmt.Errorf("error retrieving pool for volume: %s", err)
}
- d.Set("pool", ci.PoolName)
- d.Set("name", ci.Name)
- d.Set("local_hostname", ci.Metadata.LocalHostname)
- d.Set("user_data", ci.UserDataRaw)
+ defer volPool.Free()
- if len(ci.UserData.SSHAuthorizedKeys) == 1 {
- d.Set("ssh_authorized_key", ci.UserData.SSHAuthorizedKeys[0])
+ volPoolName, err := volPool.GetName()
+ if err != nil {
+ return fmt.Errorf("error retrieving pool name: %s", err)
+ }
+
+ d.Set("pool", volPoolName)
+ d.Set("name", volName)
+
+ info, err := volume.GetInfo()
+ if err != nil {
+ return fmt.Errorf("error retrieving volume name: %s", err)
}
+ d.Set("size", info.Capacity)
return nil
}
-func resourceCloudInitDelete(d *schema.ResourceData, meta interface{}) error {
+func resourceLibvirtVolumeDelete(d *schema.ResourceData, meta interface{}) error {
virConn := meta.(*Client).libvirt
if virConn == nil {
- return fmt.Errorf("The libvirt connection was nil.")
- }
-
- key, err := getCloudInitVolumeKeyFromTerraformID(d.Id())
- if err != nil {
- return err
+ return fmt.Errorf("the libvirt connection was nil")
}
- return RemoveVolume(virConn, key)
+ return RemoveVolume(virConn, d.Id())
}