mirror of
https://github.com/siderolabs/talos.git
synced 2025-12-18 07:51:56 +01:00
Mostly by using new version of `go-uefi` module and streaming instead of loading all at once. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Package pesign implements the PE (portable executable) signing.
|
|
package pesign
|
|
|
|
import (
|
|
"cmp"
|
|
"crypto"
|
|
"crypto/x509"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/foxboron/go-uefi/authenticode"
|
|
)
|
|
|
|
// Signer sigs PE (portable executable) files.
|
|
type Signer struct {
|
|
provider CertificateSigner
|
|
}
|
|
|
|
// CertificateSigner is a provider of the certificate and the signer.
|
|
type CertificateSigner interface {
|
|
Signer() crypto.Signer
|
|
Certificate() *x509.Certificate
|
|
}
|
|
|
|
// NewSigner creates a new Signer.
|
|
func NewSigner(provider CertificateSigner) (*Signer, error) {
|
|
return &Signer{
|
|
provider: provider,
|
|
}, nil
|
|
}
|
|
|
|
// Sign signs the input file and writes the output to the output file.
|
|
func (s *Signer) Sign(input, output string) error {
|
|
in, err := os.Open(input)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer in.Close() //nolint:errcheck
|
|
|
|
pecoff, err := authenticode.Parse(in)
|
|
if err != nil {
|
|
return fmt.Errorf("error parsing binary: %w", err)
|
|
}
|
|
|
|
_, err = pecoff.Sign(s.provider.Signer(), s.provider.Certificate())
|
|
if err != nil {
|
|
return fmt.Errorf("error signing binary: %w", err)
|
|
}
|
|
|
|
f, err := os.OpenFile(output, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600)
|
|
if err != nil {
|
|
return fmt.Errorf("error opening output file: %w", err)
|
|
}
|
|
|
|
closer := f.Close
|
|
|
|
defer closer() //nolint:errcheck
|
|
|
|
_, err = io.Copy(f, pecoff.Open())
|
|
|
|
return cmp.Or(err, closer())
|
|
}
|