-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsigner.go
123 lines (112 loc) · 3.22 KB
/
signer.go
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//
// Copyright (c) SAS Institute 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 rpm
// Sign RedHat packages
import (
"encoding/hex"
"fmt"
"io"
"os"
"strings"
"time"
"github.com/rs/zerolog"
rpmutils "github.com/sassoftware/go-rpmutils"
"github.com/sassoftware/relic/v7/lib/audit"
"github.com/sassoftware/relic/v7/lib/binpatch"
"github.com/sassoftware/relic/v7/lib/certloader"
"github.com/sassoftware/relic/v7/lib/magic"
"github.com/sassoftware/relic/v7/lib/pgptools"
"github.com/sassoftware/relic/v7/signers"
"github.com/sassoftware/relic/v7/signers/sigerrors"
)
var RpmSigner = &signers.Signer{
Name: "rpm",
Magic: magic.FileTypeRPM,
CertTypes: signers.CertTypePgp,
FormatLog: formatLog,
Sign: sign,
Verify: verify,
}
func init() {
signers.Register(RpmSigner)
}
func formatLog(attrs *audit.Info) *zerolog.Event {
return attrs.AttrsForLog("rpm.")
}
func sign(r io.Reader, cert *certloader.Certificate, opts signers.SignOpts) ([]byte, error) {
config := &rpmutils.SignatureOptions{
Hash: opts.Hash,
CreationTime: opts.Time.UTC().Round(time.Second),
}
header, err := rpmutils.SignRpmStream(r, cert.PgpKey.PrivateKey, config)
if err != nil {
return nil, err
}
blob, err := header.DumpSignatureHeader(true)
if err != nil {
return nil, err
}
patch := binpatch.New()
patch.Add(0, int64(header.OriginalSignatureHeaderSize()), blob)
md5, _ := header.GetBytes(rpmutils.SIG_MD5)
sha1, _ := header.GetString(rpmutils.SIG_SHA1)
opts.Audit.Attributes["rpm.nevra"] = nevra(header)
opts.Audit.Attributes["rpm.md5"] = hex.EncodeToString(md5)
opts.Audit.Attributes["rpm.sha1"] = sha1
return opts.SetBinPatch(patch)
}
func verify(f *os.File, opts signers.VerifyOpts) ([]*signers.Signature, error) {
// TODO: add a flag to skip payload digest to rpmutils.Verify
header, sigs, err := rpmutils.Verify(f, opts.TrustedPgp)
if err != nil {
return nil, err
}
if len(sigs) == 0 {
return nil, sigerrors.NotSignedError{Type: "RPM"}
}
var ret []*signers.Signature
seen := make(map[uint64]bool)
for _, sig := range sigs {
if seen[sig.KeyId] {
continue
}
seen[sig.KeyId] = true
rsig := &signers.Signature{
Package: nevra(header),
CreationTime: sig.CreationTime,
Hash: sig.Hash,
}
if sig.Signer == nil {
if !opts.NoChain {
return nil, pgptools.ErrNoKey(sig.KeyId)
}
rsig.Signer = fmt.Sprintf("UNKNOWN(%x)", sig.KeyId)
} else {
rsig.SignerPgp = sig.Signer
}
ret = append(ret, rsig)
}
return ret, nil
}
func nevra(header *rpmutils.RpmHeader) string {
nevra, _ := header.GetNEVRA()
snevra := nevra.String()
// strip .rpm
snevra = snevra[:len(snevra)-4]
// strip zero epoch
snevra = strings.ReplaceAll(snevra, "-0:", "-")
return snevra
}