summaryrefslogtreecommitdiff
path: root/vendor/github.com/coreos/ignition/config/types/verification.go
blob: d2158b8082a2e25d708e7123fbf18e22352940a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright 2016 CoreOS, Inc.
//
// 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 types

import (
	"crypto"
	"encoding/hex"
	"errors"
	"strings"

	"github.com/coreos/ignition/config/validate/report"
)

var (
	ErrHashMalformed    = errors.New("malformed hash specifier")
	ErrHashWrongSize    = errors.New("incorrect size for hash sum")
	ErrHashUnrecognized = errors.New("unrecognized hash function")
)

// HashParts will return the sum and function (in that order) of the hash stored
// in this Verification, or an error if there is an issue during parsing.
func (v Verification) HashParts() (string, string, error) {
	if v.Hash == nil {
		// The hash can be nil
		return "", "", nil
	}
	parts := strings.SplitN(*v.Hash, "-", 2)
	if len(parts) != 2 {
		return "", "", ErrHashMalformed
	}

	return parts[0], parts[1], nil
}

func (v Verification) Validate() report.Report {
	r := report.Report{}

	if v.Hash == nil {
		// The hash can be nil
		return r
	}

	function, sum, err := v.HashParts()
	if err != nil {
		r.Add(report.Entry{
			Message: err.Error(),
			Kind:    report.EntryError,
		})
		return r
	}
	var hash crypto.Hash
	switch function {
	case "sha512":
		hash = crypto.SHA512
	default:
		r.Add(report.Entry{
			Message: ErrHashUnrecognized.Error(),
			Kind:    report.EntryError,
		})
		return r
	}

	if len(sum) != hex.EncodedLen(hash.Size()) {
		r.Add(report.Entry{
			Message: ErrHashWrongSize.Error(),
			Kind:    report.EntryError,
		})
	}

	return r
}