Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite835e89

Browse files
committed
Fix memory leak when rejecting bogus DH parameters.
While back-patchinge0e569e, I noted that there were some otherplaces where we ought to be applying DH_free(); namely, where weload some DH parameters from a file and then reject them as notbeing sufficiently secure. While it seems really unlikely thatanybody would hit these code paths in production, let alone doso repeatedly, let's fix it for consistency.Back-patch to v10 where this code was introduced.Discussion:https://postgr.es/m/16160-18367e56e9a28264@postgresql.org
1 parentf0c2a5b commite835e89

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

‎src/backend/libpq/be-secure-openssl.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -922,13 +922,15 @@ load_dh_file(char *filename, bool isServerStart)
922922
(errcode(ERRCODE_CONFIG_FILE_ERROR),
923923
errmsg("invalid DH parameters: %s",
924924
SSLerrmessage(ERR_get_error()))));
925+
DH_free(dh);
925926
returnNULL;
926927
}
927928
if (codes&DH_CHECK_P_NOT_PRIME)
928929
{
929930
ereport(isServerStart ?FATAL :LOG,
930931
(errcode(ERRCODE_CONFIG_FILE_ERROR),
931932
errmsg("invalid DH parameters: p is not prime")));
933+
DH_free(dh);
932934
returnNULL;
933935
}
934936
if ((codes&DH_NOT_SUITABLE_GENERATOR)&&
@@ -937,6 +939,7 @@ load_dh_file(char *filename, bool isServerStart)
937939
ereport(isServerStart ?FATAL :LOG,
938940
(errcode(ERRCODE_CONFIG_FILE_ERROR),
939941
errmsg("invalid DH parameters: neither suitable generator or safe prime")));
942+
DH_free(dh);
940943
returnNULL;
941944
}
942945

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp