| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- // Copyright 2019 Yunion
- //
- // 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 storageman
- import (
- "context"
- "fmt"
- "path"
- "github.com/pkg/errors"
- "yunion.io/x/jsonutils"
- "yunion.io/x/log"
- "yunion.io/x/onecloud/pkg/apis"
- api "yunion.io/x/onecloud/pkg/apis/compute"
- "yunion.io/x/onecloud/pkg/hostman/hostutils"
- "yunion.io/x/onecloud/pkg/httperrors"
- "yunion.io/x/onecloud/pkg/util/qemuimg"
- )
- var _ IDisk = (*SNasDisk)(nil)
- type SNasDisk struct {
- SLocalDisk
- }
- func NewNasDisk(storage IStorage, id string) *SNasDisk {
- return &SNasDisk{*NewLocalDisk(storage, id)}
- }
- func (d *SNasDisk) CreateFromTemplate(ctx context.Context, imageId, format string, size int64, encryptInfo *apis.SEncryptInfo) (jsonutils.JSONObject, error) {
- imageCacheManager := storageManager.GetStoragecacheById(d.Storage.GetStoragecacheId())
- return d.SLocalDisk.createFromTemplateAndResize(ctx, imageId, format, imageCacheManager, encryptInfo, size)
- }
- func (d *SNasDisk) CreateFromRemoteHostImage(ctx context.Context, url string, size int64, encryptInfo *apis.SEncryptInfo) error {
- return fmt.Errorf("Not implemented")
- }
- func (d *SNasDisk) CreateFromSnapshotLocation(ctx context.Context, snapshotLocation string, size int64, encryptInfo *apis.SEncryptInfo) (jsonutils.JSONObject, error) {
- snapshotPath := path.Join(d.Storage.GetPath(), snapshotLocation)
- newImg, err := qemuimg.NewQemuImage(d.GetPath())
- if err != nil {
- return nil, errors.Wrap(err, "new image from snapshot")
- }
- if newImg.IsValid() {
- if err := newImg.Delete(); err != nil {
- log.Errorln(err)
- return nil, err
- }
- }
- if encryptInfo != nil {
- err = newImg.CreateQcow2(0, false, snapshotPath, encryptInfo.Key, qemuimg.EncryptFormatLuks, encryptInfo.Alg)
- } else {
- err = newImg.CreateQcow2(0, false, snapshotPath, "", "", "")
- }
- if err != nil {
- return nil, errors.Wrap(err, "create image from snapshot")
- }
- retSize, _ := d.GetDiskDesc().Int("disk_size")
- log.Infof("REQSIZE: %d, RETSIZE: %d", size, retSize)
- if size > retSize {
- params := new(SDiskResizeInput)
- diskInfo := jsonutils.NewDict()
- diskInfo.Set("size", jsonutils.NewInt(size))
- if encryptInfo != nil {
- diskInfo.Set("encrypt_info", jsonutils.Marshal(encryptInfo))
- }
- params.DiskInfo = diskInfo
- return d.Resize(ctx, params)
- }
- return d.GetDiskDesc(), nil
- }
- func (d *SNasDisk) ResetFromSnapshot(ctx context.Context, params interface{}) (jsonutils.JSONObject, error) {
- resetParams, ok := params.(*SDiskReset)
- if !ok {
- return nil, hostutils.ParamsError
- }
- outOfChain, err := resetParams.Input.Bool("out_of_chain")
- if err != nil {
- return nil, httperrors.NewMissingParameterError("out_of_chain")
- }
- location, err := resetParams.Input.GetString("location")
- if err != nil {
- return nil, httperrors.NewMissingParameterError("location")
- }
- snapshotPath := path.Join(d.Storage.GetPath(), location)
- log.Infof("Snapshot path is %s", snapshotPath)
- var encryptInfo *apis.SEncryptInfo
- if resetParams.Input.Contains("encrypt_info") {
- encInfo := apis.SEncryptInfo{}
- err := resetParams.Input.Unmarshal(&encInfo, "encrypt_info")
- if err != nil {
- log.Errorf("unmarshal encrypt_info fail %s", err)
- } else {
- encryptInfo = &encInfo
- }
- }
- return d.resetFromSnapshot(snapshotPath, outOfChain, encryptInfo)
- }
- func (d *SNasDisk) GetSnapshotLocation() string {
- return d.GetSnapshotDir()[len(d.Storage.GetPath())+1:]
- }
- type SNFSDisk struct {
- SNasDisk
- }
- func NewNFSDisk(storage IStorage, id string) *SNFSDisk {
- return &SNFSDisk{
- SNasDisk: *NewNasDisk(storage, id),
- }
- }
- func (d *SNFSDisk) GetType() string {
- return api.STORAGE_NFS
- }
- type SGPFSDisk struct {
- SNasDisk
- }
- func NewGPFSDisk(storage IStorage, id string) *SGPFSDisk {
- return &SGPFSDisk{
- SNasDisk: *NewNasDisk(storage, id),
- }
- }
- func (d *SGPFSDisk) GetType() string {
- return api.STORAGE_GPFS
- }
|