Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HardenedBSD
HardenedBSD
Commits
f874e59f
Commit
f874e59f
authored
Jul 05, 2022
by
Jung-uk Kim
Browse files
Import OpenSSL 1.1.1q
parent
54ae8e38
Changes
10
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f874e59f
...
...
@@ -7,6 +7,19 @@
https://github.com/openssl/openssl/commits/ and pick the appropriate
release branch.
Changes between 1.1.1p and 1.1.1q [5 Jul 2022]
*) AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised
implementation would not encrypt the entirety of the data under some
circumstances. This could reveal sixteen bytes of data that was
preexisting in the memory that wasn't written. In the special case of
"in place" encryption, sixteen bytes of the plaintext would be revealed.
Since OpenSSL does not support OCB based cipher suites for TLS and DTLS,
they are both unaffected.
(CVE-2022-2097)
[Alex Chernyakhovsky, David Benjamin, Alejandro Sedeño]
Changes between 1.1.1o and 1.1.1p [21 Jun 2022]
*) In addition to the c_rehash shell command injection identified in
...
...
NEWS
View file @
f874e59f
...
...
@@ -5,6 +5,11 @@
This file gives a brief overview of the major changes between each OpenSSL
release. For more details please read the CHANGES file.
Major changes between OpenSSL 1.1.1p and OpenSSL 1.1.1q [5 Jul 2022]
o Fixed AES OCB failure to encrypt some bytes on 32-bit x86 platforms
(CVE-2022-2097)
Major changes between OpenSSL 1.1.1o and OpenSSL 1.1.1p [21 Jun 2022]
o Fixed additional bugs in the c_rehash script which was not properly
...
...
README
View file @
f874e59f
OpenSSL 1.1.1
p 21
Ju
n
2022
OpenSSL 1.1.1
q 5
Ju
l
2022
Copyright (c) 1998-2022 The OpenSSL Project
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
...
...
crypto/aes/asm/aesni-x86.pl
View file @
f874e59f
#! /usr/bin/env perl
# Copyright 2009-202
0
The OpenSSL Project Authors. All Rights Reserved.
# Copyright 2009-202
2
The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
...
...
@@ -2027,7 +2027,7 @@ my ($l_,$block,$i1,$i3,$i5) = ($rounds_,$key_,$rounds,$len,$out);
&movdqu
(
&QWP
(
-
16
*
2
,
$out
,
$inp
),
$inout4
);
&movdqu
(
&QWP
(
-
16
*
1
,
$out
,
$inp
),
$inout5
);
&cmp
(
$inp
,
$len
);
# done yet?
&jb
(
&label
("
grandloop
"));
&jb
e
(
&label
("
grandloop
"));
&set_label
("
short
");
&add
(
$len
,
16
*
6
);
...
...
@@ -2453,7 +2453,7 @@ my ($l_,$block,$i1,$i3,$i5) = ($rounds_,$key_,$rounds,$len,$out);
&pxor
(
$rndkey1
,
$inout5
);
&movdqu
(
&QWP
(
-
16
*
1
,
$out
,
$inp
),
$inout5
);
&cmp
(
$inp
,
$len
);
# done yet?
&jb
(
&label
("
grandloop
"));
&jb
e
(
&label
("
grandloop
"));
&set_label
("
short
");
&add
(
$len
,
16
*
6
);
...
...
crypto/bn/bn_gcd.c
View file @
f874e59f
/*
* Copyright 1995-202
0
The OpenSSL Project Authors. All Rights Reserved.
* Copyright 1995-202
2
The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
...
...
@@ -47,7 +47,8 @@ BIGNUM *bn_mod_inverse_no_branch(BIGNUM *in,
if
(
R
==
NULL
)
goto
err
;
BN_one
(
X
);
if
(
!
BN_one
(
X
))
goto
err
;
BN_zero
(
Y
);
if
(
BN_copy
(
B
,
a
)
==
NULL
)
goto
err
;
...
...
@@ -235,7 +236,8 @@ BIGNUM *int_bn_mod_inverse(BIGNUM *in,
if
(
R
==
NULL
)
goto
err
;
BN_one
(
X
);
if
(
!
BN_one
(
X
))
goto
err
;
BN_zero
(
Y
);
if
(
BN_copy
(
B
,
a
)
==
NULL
)
goto
err
;
...
...
crypto/ec/ec_asn1.c
View file @
f874e59f
...
...
@@ -794,7 +794,7 @@ EC_GROUP *EC_GROUP_new_from_ecparameters(const ECPARAMETERS *params)
}
/* extract the order */
if
(
(
a
=
ASN1_INTEGER_to_BN
(
params
->
order
,
a
)
)
==
NULL
)
{
if
(
ASN1_INTEGER_to_BN
(
params
->
order
,
a
)
==
NULL
)
{
ECerr
(
EC_F_EC_GROUP_NEW_FROM_ECPARAMETERS
,
ERR_R_ASN1_LIB
);
goto
err
;
}
...
...
@@ -811,7 +811,7 @@ EC_GROUP *EC_GROUP_new_from_ecparameters(const ECPARAMETERS *params)
if
(
params
->
cofactor
==
NULL
)
{
BN_free
(
b
);
b
=
NULL
;
}
else
if
(
(
b
=
ASN1_INTEGER_to_BN
(
params
->
cofactor
,
b
)
)
==
NULL
)
{
}
else
if
(
ASN1_INTEGER_to_BN
(
params
->
cofactor
,
b
)
==
NULL
)
{
ECerr
(
EC_F_EC_GROUP_NEW_FROM_ECPARAMETERS
,
ERR_R_ASN1_LIB
);
goto
err
;
}
...
...
crypto/x509v3/v3_addr.c
View file @
f874e59f
/*
* Copyright 2006-20
16
The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2006-20
22
The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
...
...
@@ -13,6 +13,8 @@
#include
<stdio.h>
#include
<stdlib.h>
#include
<assert.h>
#include
<string.h>
#include
"internal/cryptlib.h"
#include
<openssl/conf.h>
...
...
@@ -342,8 +344,13 @@ static int range_should_be_prefix(const unsigned char *min,
unsigned
char
mask
;
int
i
,
j
;
if
(
memcmp
(
min
,
max
,
length
)
<=
0
)
return
-
1
;
/*
* It is the responsibility of the caller to confirm min <= max. We don't
* use ossl_assert() here since we have no way of signalling an error from
* this function - so we just use a plain assert instead.
*/
assert
(
memcmp
(
min
,
max
,
length
)
<=
0
);
for
(
i
=
0
;
i
<
length
&&
min
[
i
]
==
max
[
i
];
i
++
)
;
for
(
j
=
length
-
1
;
j
>=
0
&&
min
[
j
]
==
0x00
&&
max
[
j
]
==
0xFF
;
j
--
)
;
if
(
i
<
j
)
...
...
@@ -426,6 +433,9 @@ static int make_addressRange(IPAddressOrRange **result,
IPAddressOrRange
*
aor
;
int
i
,
prefixlen
;
if
(
memcmp
(
min
,
max
,
length
)
>
0
)
return
0
;
if
((
prefixlen
=
range_should_be_prefix
(
min
,
max
,
length
))
>=
0
)
return
make_addressPrefix
(
result
,
min
,
prefixlen
);
...
...
crypto/x509v3/v3_sxnet.c
View file @
f874e59f
...
...
@@ -78,6 +78,8 @@ static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
for
(
i
=
0
;
i
<
sk_SXNETID_num
(
sx
->
ids
);
i
++
)
{
id
=
sk_SXNETID_value
(
sx
->
ids
,
i
);
tmp
=
i2s_ASN1_INTEGER
(
NULL
,
id
->
zone
);
if
(
tmp
==
NULL
)
return
0
;
BIO_printf
(
out
,
"
\n
%*sZone: %s, User: "
,
indent
,
""
,
tmp
);
OPENSSL_free
(
tmp
);
ASN1_STRING_print
(
out
,
id
->
user
);
...
...
doc/man3/SSL_get_current_cipher.pod
View file @
f874e59f
...
...
@@ -10,8 +10,8 @@ SSL_get_pending_cipher - get SSL_CIPHER of a connection
#include <openssl/ssl.h>
SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl);
const
SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
const
SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl);
const char *SSL_get_cipher_name(const SSL *s);
const char *SSL_get_cipher(const SSL *s);
...
...
@@ -61,7 +61,7 @@ L<ssl(7)>, L<SSL_CIPHER_get_name(3)>
=head1 COPYRIGHT
Copyright 2000-20
18
The OpenSSL Project Authors. All Rights Reserved.
Copyright 2000-20
22
The OpenSSL Project Authors. All Rights Reserved.
Licensed under the OpenSSL license (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
...
...
include/openssl/opensslv.h
View file @
f874e59f
...
...
@@ -39,8 +39,8 @@ extern "C" {
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
* major minor fix final patch/beta)
*/
# define OPENSSL_VERSION_NUMBER 0x101011
0
fL
# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1
p
21
Ju
n
2022"
# define OPENSSL_VERSION_NUMBER 0x101011
1
fL
# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1
q
5
Ju
l
2022"
/*-
* The macros below are to be used for shared library (.so, .dll, ...)
...
...
HardenedBSD Services
@hardenedbsd-services
mentioned in commit
64cbf7ce
·
Jul 05, 2022
mentioned in commit
64cbf7ce
mentioned in commit 64cbf7cebc3b80a971e1d15124831d84604b9370
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment