forked from pool/python
Accepting request 121341 from home:jimfunk:branches:devel:languages:python:Factory
Part of proposed fix for bnc#761501 - Add support for loading directory-based certificate stores in ssl module OBS-URL: https://build.opensuse.org/request/show/121341 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=122
This commit is contained in:
parent
d28ce9563c
commit
86253c9ef6
41
python-2.7.3-ssl_ca_path.patch
Normal file
41
python-2.7.3-ssl_ca_path.patch
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
Index: Modules/_ssl.c
|
||||||
|
===================================================================
|
||||||
|
--- Modules/_ssl.c.orig
|
||||||
|
+++ Modules/_ssl.c
|
||||||
|
@@ -271,6 +271,7 @@ newPySSLObject(PySocketSockObject *Sock,
|
||||||
|
char *errstr = NULL;
|
||||||
|
int ret;
|
||||||
|
int verification_mode;
|
||||||
|
+ struct stat stat_buf;
|
||||||
|
|
||||||
|
self = PyObject_New(PySSLObject, &PySSL_Type); /* Create new object */
|
||||||
|
if (self == NULL)
|
||||||
|
@@ -331,11 +332,23 @@ newPySSLObject(PySocketSockObject *Sock,
|
||||||
|
"verification of other-side certificates.");
|
||||||
|
goto fail;
|
||||||
|
} else {
|
||||||
|
- PySSL_BEGIN_ALLOW_THREADS
|
||||||
|
- ret = SSL_CTX_load_verify_locations(self->ctx,
|
||||||
|
- cacerts_file,
|
||||||
|
- NULL);
|
||||||
|
- PySSL_END_ALLOW_THREADS
|
||||||
|
+ /* If cacerts_file is a directory-based cert store, pass it as the
|
||||||
|
+ third parameter, CApath, instead
|
||||||
|
+ */
|
||||||
|
+ if (stat(cacerts_file, &stat_buf) == 0 && S_ISDIR(stat_buf.st_mode)) {
|
||||||
|
+ PySSL_BEGIN_ALLOW_THREADS
|
||||||
|
+ ret = SSL_CTX_load_verify_locations(self->ctx,
|
||||||
|
+ NULL,
|
||||||
|
+ cacerts_file);
|
||||||
|
+ PySSL_END_ALLOW_THREADS
|
||||||
|
+ } else {
|
||||||
|
+ PySSL_BEGIN_ALLOW_THREADS
|
||||||
|
+ ret = SSL_CTX_load_verify_locations(self->ctx,
|
||||||
|
+ cacerts_file,
|
||||||
|
+ NULL);
|
||||||
|
+ PySSL_END_ALLOW_THREADS
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (ret != 1) {
|
||||||
|
_setSSLError(NULL, 0, __FILE__, __LINE__);
|
||||||
|
goto fail;
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 17 17:49:31 UTC 2012 - jfunk@funktronics.ca
|
||||||
|
|
||||||
|
- Support directory-based certificate stores with the ca_certs parameter of SSL
|
||||||
|
functions [bnc#761501]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 14 08:57:46 UTC 2012 - dmueller@suse.com
|
Sat Apr 14 08:57:46 UTC 2012 - dmueller@suse.com
|
||||||
|
|
||||||
|
@ -48,6 +48,8 @@ Patch13: python-2.7.2-fix_date_time_compiler.patch
|
|||||||
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
||||||
Patch16: pypirc-secure.diff
|
Patch16: pypirc-secure.diff
|
||||||
Patch17: remove-static-libpython.diff
|
Patch17: remove-static-libpython.diff
|
||||||
|
# PATCH-FIX-OPENSUSE python-2.7.3-ssl_ca_path.patch [bnc#761501] -- Support directory-based certificate stores with the ca_certs parameter of SSL functions
|
||||||
|
Patch18: python-2.7.3-ssl_ca_path.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
%define python_version %(echo %{tarversion} | head -c 3)
|
%define python_version %(echo %{tarversion} | head -c 3)
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -133,6 +135,7 @@ other applications.
|
|||||||
%endif
|
%endif
|
||||||
%patch16 -p1
|
%patch16 -p1
|
||||||
%patch17
|
%patch17
|
||||||
|
%patch18
|
||||||
# COMMON-PREP-END
|
# COMMON-PREP-END
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 17 17:49:31 UTC 2012 - jfunk@funktronics.ca
|
||||||
|
|
||||||
|
- Support directory-based certificate stores with the ca_certs parameter of SSL
|
||||||
|
functions [bnc#761501]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 28 09:21:32 UTC 2011 - saschpe@suse.de
|
Mon Nov 28 09:21:32 UTC 2011 - saschpe@suse.de
|
||||||
|
|
||||||
|
@ -44,6 +44,8 @@ Patch13: python-2.7.2-fix_date_time_compiler.patch
|
|||||||
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
||||||
Patch16: pypirc-secure.diff
|
Patch16: pypirc-secure.diff
|
||||||
Patch17: remove-static-libpython.diff
|
Patch17: remove-static-libpython.diff
|
||||||
|
# PATCH-FIX-OPENSUSE python-2.7.3-ssl_ca_path.patch [bnc#761501] -- Support directory-based certificate stores with the ca_certs parameter of SSL functions
|
||||||
|
Patch18: python-2.7.3-ssl_ca_path.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
Provides: pyth_doc
|
Provides: pyth_doc
|
||||||
Provides: pyth_ps
|
Provides: pyth_ps
|
||||||
@ -90,6 +92,7 @@ Python, and Macintosh Module Reference in PDF format.
|
|||||||
%endif
|
%endif
|
||||||
%patch16 -p1
|
%patch16 -p1
|
||||||
%patch17
|
%patch17
|
||||||
|
%patch18
|
||||||
# COMMON-PREP-END
|
# COMMON-PREP-END
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 17 17:49:31 UTC 2012 - jfunk@funktronics.ca
|
||||||
|
|
||||||
|
- Support directory-based certificate stores with the ca_certs parameter of SSL
|
||||||
|
functions [bnc#761501]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 15 14:17:43 UTC 2012 - jmatejek@suse.com
|
Tue May 15 14:17:43 UTC 2012 - jmatejek@suse.com
|
||||||
|
|
||||||
|
@ -52,6 +52,8 @@ Patch13: python-2.7.2-fix_date_time_compiler.patch
|
|||||||
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
Patch15: python-2.7.2-disable-tests-in-test_io.patch
|
||||||
Patch16: pypirc-secure.diff
|
Patch16: pypirc-secure.diff
|
||||||
Patch17: remove-static-libpython.diff
|
Patch17: remove-static-libpython.diff
|
||||||
|
# PATCH-FIX-OPENSUSE python-2.7.3-ssl_ca_path.patch [bnc#761501] -- Support directory-based certificate stores with the ca_certs parameter of SSL functions
|
||||||
|
Patch18: python-2.7.3-ssl_ca_path.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: db-devel
|
BuildRequires: db-devel
|
||||||
@ -173,6 +175,7 @@ implementation of the standard Unix DBM databases.
|
|||||||
%endif
|
%endif
|
||||||
%patch16 -p1
|
%patch16 -p1
|
||||||
%patch17
|
%patch17
|
||||||
|
%patch18
|
||||||
# COMMON-PREP-END
|
# COMMON-PREP-END
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
|
Loading…
x
Reference in New Issue
Block a user