Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add validation for Kitfiles #267

Merged
merged 2 commits into from Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkg/cmd/pack/pack.go
Expand Up @@ -81,7 +81,7 @@ func pack(ctx context.Context, opts *packOptions, kitfile *artifact.KitFile, sto
baseRef := repo.FormatRepositoryForDisplay(opts.modelRef.String())
parentKitfile, err := kfutils.ResolveKitfile(ctx, opts.configHome, kitfile.Model.Path, baseRef)
if err != nil {
return nil, err
return nil, fmt.Errorf("Failed to resolve referenced modelkit %s: %w", kitfile.Model.Path, err)
}
extraLayerPaths = kfutils.LayerPathsFromKitfile(parentKitfile)
}
Expand Down Expand Up @@ -109,6 +109,9 @@ func readKitfile(modelFile string) (*artifact.KitFile, error) {
if err := kitfile.LoadModel(kitfileContentReader); err != nil {
return nil, err
}
if err := kfutils.ValidateKitfile(kitfile); err != nil {
return nil, err
}
return kitfile, nil
}

Expand Down
3 changes: 3 additions & 0 deletions pkg/lib/kitfile/resolve.go
Expand Up @@ -38,6 +38,9 @@ func ResolveKitfile(ctx context.Context, configHome, kitfileRef, baseRef string)
}
resolved = mergeKitfiles(resolved, kitfile)
if resolved.Model == nil || !IsModelKitReference(resolved.Model.Path) {
if err := ValidateKitfile(resolved); err != nil {
return nil, err
}
return resolved, nil
}
if idx := getIndex(refChain, resolved.Model.Path); idx != -1 {
Expand Down
88 changes: 88 additions & 0 deletions pkg/lib/kitfile/validate.go
@@ -0,0 +1,88 @@
// Copyright 2024 The KitOps Authors.
//
// 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.
//
// SPDX-License-Identifier: Apache-2.0

package kitfile

import (
"fmt"
"path"
"path/filepath"
"regexp"
"slices"
"strings"

"kitops/pkg/artifact"
)

const partTypeMaxLen = 64
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why 64?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Arbitrary choice -- big enough that nobody should hit the limit but also not too big since we can increase this without breaking any Kitfiles.


var partTypeRegexp = regexp.MustCompile(`^[\w][\w.-]$`)

// ValidateKitfile returns an error if the parsed Kitfile is not valid. The error string
// is multiple lines, each consisting of an issue in the kitfile (e.g. duplicate path).
func ValidateKitfile(kf *artifact.KitFile) error {
var errs []string
addErr := func(format string, a ...any) {
s := fmt.Sprintf(format, a...)
errs = append(errs, fmt.Sprintf(" * %s", s))
}

// Map of paths to the component that uses them; used to detect duplicate paths
paths := map[string][]string{}
addPath := func(path, source string) {
if path == "" {
path = "."
}
paths[path] = append(paths[path], source)
}

if kf.Model != nil {
addPath(kf.Model.Path, fmt.Sprintf("model %s", kf.Model.Name))
for _, part := range kf.Model.Parts {
addPath(part.Path, fmt.Sprintf("modelpart %s", part.Name))
if part.Type != "" {
if !partTypeRegexp.MatchString(part.Type) {
addErr("modelpart %s has invalid type (must be alphanumeric with dots, dashes, and underscores)", part.Name)
}
if len(part.Type) > partTypeMaxLen {
addErr("modelpart %s type is too long (must be fewer than %d characters)", part.Name, partTypeMaxLen)
}
}
}
}
for _, dataset := range kf.DataSets {
addPath(dataset.Path, fmt.Sprintf("dataset %s", dataset.Name))
}
for idx, code := range kf.Code {
addPath(code.Path, fmt.Sprintf("code layer %d", idx))
}

for layerPath, layerIds := range paths {
if len := len(layerIds); len > 1 {
addErr("%s and %s use the same path %s", strings.Join(layerIds[:len-1], ", "), layerIds[len-1], layerPath)
}
if path.IsAbs(layerPath) || filepath.IsAbs(layerPath) {
addErr("absolute paths are not supported in a Kitfile (path %s in %s)", layerPath, layerIds[0])
}
}
if len(errs) > 0 {
// Iterating through the paths map is random; sort to get a consistent message
slices.Sort(errs)
return fmt.Errorf("errors while validating Kitfile: \n%s", strings.Join(errs, "\n"))
}

return nil
}