Verify manifest name format

Signed-off-by: Troels Thomsen <troels@thomsen.io>
pull/1211/head
Troels Thomsen 2015-11-26 10:28:35 +01:00
parent 34c8194c95
commit d309bce2d1
1 changed files with 4 additions and 0 deletions

View File

@ -112,6 +112,10 @@ func (ms *manifestStore) verifyManifest(ctx context.Context, mnfst *schema1.Sign
errs = append(errs, fmt.Errorf("manifest name must not be more than %v characters", reference.NameTotalLengthMax))
}
if !reference.NameRegexp.MatchString(mnfst.Name) {
errs = append(errs, fmt.Errorf("invalid manifest name format"))
}
if len(mnfst.History) != len(mnfst.FSLayers) {
errs = append(errs, fmt.Errorf("mismatched history and fslayer cardinality %d != %d",
len(mnfst.History), len(mnfst.FSLayers)))