import UBI golang-1.21.13-3.module+el8.10.0+22345+acdd8d0e
This commit is contained in:
parent
f177fb7380
commit
59d89b25b1
92
SOURCES/evp-digest-sign-final.patch
Normal file
92
SOURCES/evp-digest-sign-final.patch
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
diff --git a/src/vendor/github.com/golang-fips/openssl/openssl/goopenssl.h b/src/vendor/github.com/golang-fips/openssl/openssl/goopenssl.h
|
||||||
|
index ac6c64f86d..5213b841dc 100644
|
||||||
|
--- a/src/vendor/github.com/golang-fips/openssl/openssl/goopenssl.h
|
||||||
|
+++ b/src/vendor/github.com/golang-fips/openssl/openssl/goopenssl.h
|
||||||
|
@@ -264,7 +264,7 @@ int _goboringcrypto_HMAC_Update(GO_HMAC_CTX *ctx,
|
||||||
|
int _goboringcrypto_HMAC_CTX_reset(GO_HMAC_CTX *ctx);
|
||||||
|
void _goboringcrypto_HMAC_CTX_free(GO_HMAC_CTX *ctx);
|
||||||
|
int _goboringcrypto_HMAC_Final(GO_HMAC_CTX *ctx,
|
||||||
|
- unsigned char *md, unsigned int *len);
|
||||||
|
+ unsigned char *md, unsigned int len);
|
||||||
|
|
||||||
|
#include <openssl/evp.h>
|
||||||
|
#include <openssl/aes.h>
|
||||||
|
diff --git a/src/vendor/github.com/golang-fips/openssl/openssl/hmac.go b/src/vendor/github.com/golang-fips/openssl/openssl/hmac.go
|
||||||
|
index 3af1924884..c76d6690aa 100644
|
||||||
|
--- a/src/vendor/github.com/golang-fips/openssl/openssl/hmac.go
|
||||||
|
+++ b/src/vendor/github.com/golang-fips/openssl/openssl/hmac.go
|
||||||
|
@@ -121,7 +121,9 @@ func (h *boringHMAC) finalize() {
|
||||||
|
|
||||||
|
func (h *boringHMAC) Write(p []byte) (int, error) {
|
||||||
|
if len(p) > 0 {
|
||||||
|
- C._goboringcrypto_HMAC_Update(h.ctx, (*C.uint8_t)(unsafe.Pointer(&p[0])), C.size_t(len(p)))
|
||||||
|
+ if C._goboringcrypto_HMAC_Update(h.ctx, (*C.uint8_t)(unsafe.Pointer(&p[0])), C.size_t(len(p))) == 0 {
|
||||||
|
+ panic("boringcrypto: HMAC_Update failed")
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
runtime.KeepAlive(h)
|
||||||
|
return len(p), nil
|
||||||
|
@@ -136,10 +138,12 @@ func (h *boringHMAC) BlockSize() int {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *boringHMAC) Sum(in []byte) []byte {
|
||||||
|
+ size := h.Size()
|
||||||
|
if h.sum == nil {
|
||||||
|
- size := h.Size()
|
||||||
|
h.sum = make([]byte, size)
|
||||||
|
}
|
||||||
|
- C._goboringcrypto_HMAC_Final(h.ctx, (*C.uint8_t)(unsafe.Pointer(&h.sum[0])), nil)
|
||||||
|
+ if C._goboringcrypto_HMAC_Final(h.ctx, (*C.uint8_t)(unsafe.Pointer(&h.sum[0])), C.uint(size)) == 0 {
|
||||||
|
+ panic("boringcrypto: HMAC_Final failed")
|
||||||
|
+ }
|
||||||
|
return append(in, h.sum...)
|
||||||
|
}
|
||||||
|
diff --git a/src/vendor/github.com/golang-fips/openssl/openssl/openssl_port_hmac.c b/src/vendor/github.com/golang-fips/openssl/openssl/openssl_port_hmac.c
|
||||||
|
index d26ce90c82..f7dabb25e0 100644
|
||||||
|
--- a/src/vendor/github.com/golang-fips/openssl/openssl/openssl_port_hmac.c
|
||||||
|
+++ b/src/vendor/github.com/golang-fips/openssl/openssl/openssl_port_hmac.c
|
||||||
|
@@ -115,10 +115,10 @@ void _goboringcrypto_HMAC_CTX_free(GO_HMAC_CTX *ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
int _goboringcrypto_HMAC_Final(GO_HMAC_CTX *ctx,
|
||||||
|
- unsigned char *md, unsigned int *len)
|
||||||
|
+ unsigned char *md, unsigned int len)
|
||||||
|
{
|
||||||
|
EVP_MD_CTX *mdctx = NULL;
|
||||||
|
- size_t slen;
|
||||||
|
+ size_t slen = len;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
mdctx = _goboringcrypto_EVP_MD_CTX_create();
|
||||||
|
@@ -128,9 +128,10 @@ int _goboringcrypto_HMAC_Final(GO_HMAC_CTX *ctx,
|
||||||
|
if (_goboringcrypto_internal_EVP_MD_CTX_copy_ex(mdctx, ctx->mdctx) != 1)
|
||||||
|
goto err;
|
||||||
|
|
||||||
|
- ret = _goboringcrypto_EVP_DigestSignFinal(mdctx, md, &slen);
|
||||||
|
- if (ret == 1 && len)
|
||||||
|
- *len = slen;
|
||||||
|
+ if (_goboringcrypto_EVP_DigestSignFinal(mdctx, md, &slen) != 1)
|
||||||
|
+ goto err;
|
||||||
|
+
|
||||||
|
+ ret = 1;
|
||||||
|
|
||||||
|
err:
|
||||||
|
_goboringcrypto_EVP_MD_CTX_free(mdctx);
|
||||||
|
@@ -219,7 +220,7 @@ void _goboringcrypto_HMAC_CTX_free(GO_HMAC_CTX *ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
int _goboringcrypto_HMAC_Final(GO_HMAC_CTX *ctx,
|
||||||
|
- unsigned char *md, unsigned int *len)
|
||||||
|
+ unsigned char *md, unsigned int len)
|
||||||
|
{
|
||||||
|
HMAC_CTX hctx;
|
||||||
|
int ret;
|
||||||
|
@@ -228,7 +229,7 @@ int _goboringcrypto_HMAC_Final(GO_HMAC_CTX *ctx,
|
||||||
|
if (ret != 1)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
- ret = _goboringcrypto_internal_HMAC_Final(&hctx, md, len);
|
||||||
|
+ ret = _goboringcrypto_internal_HMAC_Final(&hctx, md, &len);
|
||||||
|
_goboringcrypto_internal_HMAC_CTX_cleanup(&hctx);
|
||||||
|
return ret;
|
||||||
|
}
|
@ -97,7 +97,7 @@
|
|||||||
|
|
||||||
Name: golang
|
Name: golang
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
|
|
||||||
Summary: The Go Programming Language
|
Summary: The Go Programming Language
|
||||||
# source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain
|
# source tree includes several copies of Mark.Twain-Tom.Sawyer.txt under Public Domain
|
||||||
@ -146,6 +146,8 @@ Patch2: disable_static_tests_part1.patch
|
|||||||
Patch3: disable_static_tests_part2.patch
|
Patch3: disable_static_tests_part2.patch
|
||||||
Patch5: modify_go.env.patch
|
Patch5: modify_go.env.patch
|
||||||
|
|
||||||
|
Patch231: evp-digest-sign-final.patch
|
||||||
|
|
||||||
# Having documentation separate was broken
|
# Having documentation separate was broken
|
||||||
Obsoletes: %{name}-docs < 1.1-4
|
Obsoletes: %{name}-docs < 1.1-4
|
||||||
|
|
||||||
@ -519,6 +521,10 @@ cd ..
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 01 2024 David Benoit <dbenoit@redhat.com> - 1.21.13-3
|
||||||
|
- Add evp-digest-sign-final.patch
|
||||||
|
- Resolves: RHEL-61109
|
||||||
|
|
||||||
* Mon Sep 16 2024 David Benoit <dbenoit@redhat.com> - 1.21.13-2
|
* Mon Sep 16 2024 David Benoit <dbenoit@redhat.com> - 1.21.13-2
|
||||||
- Rebuild Go with CVE Fixes
|
- Rebuild Go with CVE Fixes
|
||||||
- Remove fix-memleak-setupRSA.patch (exists upstream)
|
- Remove fix-memleak-setupRSA.patch (exists upstream)
|
||||||
|
Loading…
Reference in New Issue
Block a user