| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- // 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 baremetal
- import (
- "context"
- "database/sql"
- "fmt"
- "yunion.io/x/pkg/errors"
- api "yunion.io/x/onecloud/pkg/apis/image"
- "yunion.io/x/onecloud/pkg/compute/models"
- "yunion.io/x/onecloud/pkg/scheduler/algorithm/predicates"
- "yunion.io/x/onecloud/pkg/scheduler/core"
- )
- type UEFIImagePredicate struct {
- predicates.BasePredicate
- cacheImage *models.SCachedimage
- }
- func (f *UEFIImagePredicate) Name() string {
- return "uefi_image"
- }
- func (f *UEFIImagePredicate) Clone() core.FitPredicate {
- return new(UEFIImagePredicate)
- }
- func (f *UEFIImagePredicate) PreExecute(ctx context.Context, u *core.Unit, cs []core.Candidater) (bool, error) {
- disks := u.SchedData().Disks
- if len(disks) == 0 {
- return false, nil
- }
- imageId := disks[0].ImageId
- if len(imageId) == 0 {
- return false, nil
- }
- obj, err := models.CachedimageManager.FetchById(imageId)
- if err != nil {
- // 忽略第一次上传到glance镜像后未缓存的记录
- if err == sql.ErrNoRows {
- return false, nil
- }
- return false, errors.Wrapf(err, "fetch cached image %q", imageId)
- }
- cacheImage := obj.(*models.SCachedimage)
- f.cacheImage = cacheImage
- return true, nil
- }
- func (f *UEFIImagePredicate) isImageUEFI() bool {
- if f.cacheImage.UEFI.Bool() {
- return true
- }
- support, err := f.cacheImage.Info.Bool("properties", api.IMAGE_UEFI_SUPPORT)
- if err != nil {
- return false
- }
- return support
- }
- func (f *UEFIImagePredicate) isImageBIOS() bool {
- support, err := f.cacheImage.Info.Bool("properties", api.IMAGE_BIOS_SUPPORT)
- if err != nil {
- return false
- }
- return support
- }
- func (f *UEFIImagePredicate) Execute(ctx context.Context, u *core.Unit, c core.Candidater) (bool, []core.PredicateFailureReason, error) {
- h := predicates.NewPredicateHelper(f, u, c)
- bios := u.SchedData().Bios
- imgName := f.cacheImage.GetName()
- hostName := c.Getter().Name()
- isBIOSImage := f.isImageBIOS()
- isUEFIImage := f.isImageUEFI()
- if !isUEFIImage { // if not uefi image, set default bios image
- isBIOSImage = true
- }
- isUEFIHost := c.Getter().Host().IsUEFIBoot()
- if bios == "UEFI" {
- if !isUEFIImage || !isUEFIHost {
- h.Exclude(fmt.Sprintf("request boot UEFI, but host %s UEFI is %v, image %s UEFI is %v",
- hostName, isUEFIHost, imgName, isUEFIImage))
- }
- } else if bios == "BIOS" {
- if !isBIOSImage || isUEFIHost {
- h.Exclude(fmt.Sprintf("request boot BIOS, but host %s UEFI is %v, image %s BIOS is %v",
- hostName, isUEFIHost, imgName, isBIOSImage))
- }
- } else {
- if isUEFIHost {
- if !isUEFIImage {
- h.Exclude(fmt.Sprintf("host %s UEFI is %v, image %s UEFI is %v",
- hostName, isUEFIHost, imgName, isUEFIImage))
- }
- } else {
- if !isBIOSImage {
- h.Exclude(fmt.Sprintf("host %s UEFI is %v, image %s BIOS is %v",
- hostName, isUEFIHost, imgName, isBIOSImage))
- }
- }
- }
- return h.GetResult()
- }
|