Merge pull request #5713 from zhzhuang-zju/ctl-crds

karmadactl init: add CRDs archive verification to enhance file system robustness
This commit is contained in:
karmada-bot 2024-11-27 17:44:03 +08:00 committed by GitHub
commit 40ec488b18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 39 additions and 8 deletions

View File

@ -23,6 +23,7 @@ import (
"net"
"os"
"path"
"path/filepath"
"strings"
"time"
@ -43,6 +44,7 @@ import (
globaloptions "github.com/karmada-io/karmada/pkg/karmadactl/options"
"github.com/karmada-io/karmada/pkg/karmadactl/util"
"github.com/karmada-io/karmada/pkg/karmadactl/util/apiclient"
"github.com/karmada-io/karmada/pkg/util/validation"
"github.com/karmada-io/karmada/pkg/version"
)
@ -381,19 +383,34 @@ func (i *CommandInitOption) genCerts() error {
// prepareCRD download or unzip `crds.tar.gz` to `options.DataPath`
func (i *CommandInitOption) prepareCRD() error {
var filename string
if strings.HasPrefix(i.CRDs, "http") {
filename := i.KarmadaDataPath + "/" + path.Base(i.CRDs)
filename = i.KarmadaDataPath + "/" + path.Base(i.CRDs)
klog.Infof("download crds file:%s", i.CRDs)
if err := utils.DownloadFile(i.CRDs, filename); err != nil {
return err
}
if err := utils.DeCompress(filename, i.KarmadaDataPath); err != nil {
return err
}
return nil
} else {
filename = i.CRDs
klog.Infoln("local crds file name:", i.CRDs)
}
klog.Infoln("local crds file name:", i.CRDs)
return utils.DeCompress(i.CRDs, i.KarmadaDataPath)
if err := validation.ValidateTarball(filename, validation.ValidateCrdsTarBall); err != nil {
return fmt.Errorf("inValid crd tar, err: %w", err)
}
if err := utils.DeCompress(filename, i.KarmadaDataPath); err != nil {
return err
}
for _, archive := range validation.CrdsArchive {
expectedDir := filepath.Join(i.KarmadaDataPath, archive)
exist, _ := utils.PathExists(expectedDir)
if !exist {
return fmt.Errorf("lacking the necessary file path: %s", expectedDir)
}
}
return nil
}
func (i *CommandInitOption) createCertsSecrets() error {

View File

@ -157,3 +157,17 @@ func ListFiles(path string) []string {
}
return files
}
// PathExists check whether the path is exist
func PathExists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}

View File

@ -721,7 +721,7 @@ func TestValidateApplicationFailover(t *testing.T) {
}
}
func TestCheckOperatorCrdsTar(t *testing.T) {
func TestValidateCrdsTarBall(t *testing.T) {
testItems := []struct {
name string
header *tar.Header