!12 【openEuler-20.03-LTS-Next】Fix CVE-2020-17525

From: @yixiangzhike
Reviewed-by: @xiezhipeng1
Signed-off-by: @xiezhipeng1
This commit is contained in:
openeuler-ci-bot 2021-02-23 10:42:47 +08:00 committed by Gitee
commit 844ab4ece4
2 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,26 @@
From: Stefan Sperling <stsp@apache.org>
Date: Fri, 29 Jan 2021 13:17:15 +0000
Subject: Fix a potential NULL dereference in the config file parser.
* subversion/libsvn_repos/config_file.c
(get_repos_config): svn_repos_find_root_path() may return NULL.
Check the return value accordingly.
---
subversion/libsvn_repos/config_file.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/subversion/libsvn_repos/config_file.c b/subversion/libsvn_repos/config_file.c
index 9187277..2414db9 100644
--- a/subversion/libsvn_repos/config_file.c
+++ b/subversion/libsvn_repos/config_file.c
@@ -237,6 +237,10 @@ get_repos_config(svn_stream_t **stream,
{
/* Search for a repository in the full path. */
repos_root_dirent = svn_repos_find_root_path(dirent, scratch_pool);
+ if (repos_root_dirent == NULL)
+ return svn_error_trace(handle_missing_file(stream, checksum, access,
+ url, must_exist,
+ svn_node_none));
/* Attempt to open a repository at repos_root_dirent. */
SVN_ERR(svn_repos_open3(&access->repos, repos_root_dirent, NULL,

View File

@ -10,12 +10,14 @@
Summary: Subversion, a version control system.
Name: subversion
Version: 1.12.2
Release: 2
Release: 3
License: ASL 2.0
URL: https://subversion.apache.org/
Source0: https://www.apache.org/dist/subversion/subversion-%{version}.tar.bz2
Patch1: backport-CVE-2020-17525.patch
BuildRequires: autoconf libtool texinfo which swig gettext apr-devel apr-util-devel libserf-devel cyrus-sasl-devel sqlite-devel file-devel utf8proc-devel lz4-devel apr-util-openssl dbus-devel, libsecret-devel httpd-devel git
Requires: httpd
@ -308,6 +310,9 @@ make check-javahl
%endif
%changelog
* Tue Feb 23 2021 yixiangzhike<zhangxingliang3@huawei.com> - 1.12.2-3
- fix CVE-2020-17525
* Fri Jan 8 2021 wangchen<wangchen137@huawei.com> - 1.12.2-2
- dismiss the dependence of libdb