blob: d3263c6c77a8d109db20f620c571a4455a3378a4 [file] [log] [blame]
Bryan Duxbury50409112011-03-21 17:59:49 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
Bryan Duxbury69720412012-01-03 17:32:30 +000019
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090020import logging
Bryan Duxbury50409112011-03-21 17:59:49 +000021import os
22import socket
23import ssl
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090024import sys
25import warnings
Bryan Duxbury2b969ad2011-02-22 18:20:53 +000026
Susanne Lindgren7ec41772024-10-08 08:12:27 +020027from .sslcompat import _match_has_ipaddress
Bryan Duxbury2b969ad2011-02-22 18:20:53 +000028from thrift.transport import TSocket
Bryan Duxbury50409112011-03-21 17:59:49 +000029from thrift.transport.TTransport import TTransportException
Bryan Duxbury2b969ad2011-02-22 18:20:53 +000030
Susanne Lindgren7ec41772024-10-08 08:12:27 +020031_match_hostname = lambda cert, hostname: True
32
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090033logger = logging.getLogger(__name__)
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090034warnings.filterwarnings(
35 'default', category=DeprecationWarning, module=__name__)
Bryan Duxbury69720412012-01-03 17:32:30 +000036
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090037
38class TSSLBase(object):
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090039 # SSLContext is not available for Python < 2.7.9
40 _has_ssl_context = sys.hexversion >= 0x020709F0
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090041
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090042 # ciphers argument is not available for Python < 2.7.0
43 _has_ciphers = sys.hexversion >= 0x020700F0
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090044
James E. King, III36628a22017-02-13 15:25:41 -050045 # For python >= 2.7.9, use latest TLS that both client and server
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090046 # supports.
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090047 # SSL 2.0 and 3.0 are disabled via ssl.OP_NO_SSLv2 and ssl.OP_NO_SSLv3.
James E. King, III36628a22017-02-13 15:25:41 -050048 # For python < 2.7.9, use TLS 1.0 since TLSv1_X nor OP_NO_SSLvX is
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090049 # unavailable.
Susanne Lindgren7ec41772024-10-08 08:12:27 +020050 _default_protocol = ssl.PROTOCOL_TLS_CLIENT if _has_ssl_context else \
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090051 ssl.PROTOCOL_TLSv1
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090052
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090053 def _init_context(self, ssl_version):
54 if self._has_ssl_context:
55 self._context = ssl.SSLContext(ssl_version)
56 if self._context.protocol == ssl.PROTOCOL_SSLv23:
57 self._context.options |= ssl.OP_NO_SSLv2
58 self._context.options |= ssl.OP_NO_SSLv3
59 else:
60 self._context = None
61 self._ssl_version = ssl_version
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090062
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090063 @property
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090064 def _should_verify(self):
65 if self._has_ssl_context:
66 return self._context.verify_mode != ssl.CERT_NONE
67 else:
68 return self.cert_reqs != ssl.CERT_NONE
69
70 @property
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090071 def ssl_version(self):
72 if self._has_ssl_context:
73 return self.ssl_context.protocol
74 else:
75 return self._ssl_version
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090076
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090077 @property
78 def ssl_context(self):
79 return self._context
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090080
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090081 SSL_VERSION = _default_protocol
82 """
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090083 Default SSL version.
Tim Armstrong6b3f7d92019-02-14 14:59:22 -080084 For backwards compatibility, it can be modified.
85 Use __init__ keyword argument "ssl_version" instead.
Nobuaki Sukegawaad835862015-12-23 23:32:09 +090086 """
87
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090088 def _deprecated_arg(self, args, kwargs, pos, key):
89 if len(args) <= pos:
90 return
91 real_pos = pos + 3
92 warnings.warn(
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +090093 '%dth positional argument is deprecated.'
Tim Armstrong6b3f7d92019-02-14 14:59:22 -080094 'please use keyword argument instead.'
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +090095 % real_pos, DeprecationWarning, stacklevel=3)
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090096
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +090097 if key in kwargs:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +090098 raise TypeError(
Tim Armstrong6b3f7d92019-02-14 14:59:22 -080099 'Duplicate argument: %dth argument and %s keyword argument.'
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900100 % (real_pos, key))
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900101 kwargs[key] = args[pos]
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900102
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900103 def _unix_socket_arg(self, host, port, args, kwargs):
104 key = 'unix_socket'
105 if host is None and port is None and len(args) == 1 and key not in kwargs:
106 kwargs[key] = args[0]
107 return True
108 return False
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900109
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900110 def __getattr__(self, key):
111 if key == 'SSL_VERSION':
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900112 warnings.warn(
113 'SSL_VERSION is deprecated.'
114 'please use ssl_version attribute instead.',
115 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900116 return self.ssl_version
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900117
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900118 def __init__(self, server_side, host, ssl_opts):
119 self._server_side = server_side
120 if TSSLBase.SSL_VERSION != self._default_protocol:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900121 warnings.warn(
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900122 'SSL_VERSION is deprecated.'
Tim Armstrong6b3f7d92019-02-14 14:59:22 -0800123 'please use ssl_version keyword argument instead.',
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900124 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900125 self._context = ssl_opts.pop('ssl_context', None)
126 self._server_hostname = None
127 if not self._server_side:
128 self._server_hostname = ssl_opts.pop('server_hostname', host)
129 if self._context:
130 self._custom_context = True
131 if ssl_opts:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900132 raise ValueError(
133 'Incompatible arguments: ssl_context and %s'
134 % ' '.join(ssl_opts.keys()))
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900135 if not self._has_ssl_context:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900136 raise ValueError(
137 'ssl_context is not available for this version of Python')
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900138 else:
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900139 self._custom_context = False
140 ssl_version = ssl_opts.pop('ssl_version', TSSLBase.SSL_VERSION)
141 self._init_context(ssl_version)
142 self.cert_reqs = ssl_opts.pop('cert_reqs', ssl.CERT_REQUIRED)
143 self.ca_certs = ssl_opts.pop('ca_certs', None)
144 self.keyfile = ssl_opts.pop('keyfile', None)
145 self.certfile = ssl_opts.pop('certfile', None)
146 self.ciphers = ssl_opts.pop('ciphers', None)
147
148 if ssl_opts:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900149 raise ValueError(
150 'Unknown keyword arguments: ', ' '.join(ssl_opts.keys()))
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900151
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900152 if self._should_verify:
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900153 if not self.ca_certs:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900154 raise ValueError(
155 'ca_certs is needed when cert_reqs is not ssl.CERT_NONE')
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900156 if not os.access(self.ca_certs, os.R_OK):
157 raise IOError('Certificate Authority ca_certs file "%s" '
158 'is not readable, cannot validate SSL '
159 'certificates.' % (self.ca_certs))
160
161 @property
162 def certfile(self):
163 return self._certfile
164
165 @certfile.setter
166 def certfile(self, certfile):
167 if self._server_side and not certfile:
168 raise ValueError('certfile is needed for server-side')
169 if certfile and not os.access(certfile, os.R_OK):
170 raise IOError('No such certfile found: %s' % (certfile))
171 self._certfile = certfile
172
173 def _wrap_socket(self, sock):
174 if self._has_ssl_context:
175 if not self._custom_context:
176 self.ssl_context.verify_mode = self.cert_reqs
177 if self.certfile:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900178 self.ssl_context.load_cert_chain(self.certfile,
179 self.keyfile)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900180 if self.ciphers:
181 self.ssl_context.set_ciphers(self.ciphers)
182 if self.ca_certs:
183 self.ssl_context.load_verify_locations(self.ca_certs)
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900184 return self.ssl_context.wrap_socket(
185 sock, server_side=self._server_side,
186 server_hostname=self._server_hostname)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900187 else:
188 ssl_opts = {
189 'ssl_version': self._ssl_version,
190 'server_side': self._server_side,
191 'ca_certs': self.ca_certs,
192 'keyfile': self.keyfile,
193 'certfile': self.certfile,
194 'cert_reqs': self.cert_reqs,
195 }
196 if self.ciphers:
197 if self._has_ciphers:
198 ssl_opts['ciphers'] = self.ciphers
199 else:
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900200 logger.warning(
201 'ciphers is specified but ignored due to old Python version')
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900202 return ssl.wrap_socket(sock, **ssl_opts)
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900203
204
205class TSSLSocket(TSocket.TSocket, TSSLBase):
Bryan Duxbury50409112011-03-21 17:59:49 +0000206 """
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900207 SSL implementation of TSocket
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900208
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900209 This class creates outbound sockets wrapped using the
210 python standard ssl module for encrypted connections.
211 """
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900212
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900213 # New signature
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900214 # def __init__(self, host='localhost', port=9090, unix_socket=None,
215 # **ssl_args):
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900216 # Deprecated signature
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900217 # def __init__(self, host='localhost', port=9090, validate=True,
218 # ca_certs=None, keyfile=None, certfile=None,
219 # unix_socket=None, ciphers=None):
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900220 def __init__(self, host='localhost', port=9090, *args, **kwargs):
221 """Positional arguments: ``host``, ``port``, ``unix_socket``
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900222
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900223 Keyword arguments: ``keyfile``, ``certfile``, ``cert_reqs``,
224 ``ssl_version``, ``ca_certs``,
225 ``ciphers`` (Python 2.7.0 or later),
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900226 ``server_hostname`` (Python 2.7.9 or later)
227 Passed to ssl.wrap_socket. See ssl.wrap_socket documentation.
Bryan Duxbury50409112011-03-21 17:59:49 +0000228
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900229 Alternative keyword arguments: (Python 2.7.9 or later)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900230 ``ssl_context``: ssl.SSLContext to be used for SSLContext.wrap_socket
231 ``server_hostname``: Passed to SSLContext.wrap_socket
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900232
233 Common keyword argument:
234 ``validate_callback`` (cert, hostname) -> None:
235 Called after SSL handshake. Can raise when hostname does not
236 match the cert.
Junf6511c92019-02-01 12:07:58 +0800237 ``socket_keepalive`` enable TCP keepalive, default off.
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900238 """
239 self.is_valid = False
240 self.peercert = None
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900241
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900242 if args:
243 if len(args) > 6:
244 raise TypeError('Too many positional argument')
245 if not self._unix_socket_arg(host, port, args, kwargs):
246 self._deprecated_arg(args, kwargs, 0, 'validate')
247 self._deprecated_arg(args, kwargs, 1, 'ca_certs')
248 self._deprecated_arg(args, kwargs, 2, 'keyfile')
249 self._deprecated_arg(args, kwargs, 3, 'certfile')
250 self._deprecated_arg(args, kwargs, 4, 'unix_socket')
251 self._deprecated_arg(args, kwargs, 5, 'ciphers')
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900252
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900253 validate = kwargs.pop('validate', None)
254 if validate is not None:
255 cert_reqs_name = 'CERT_REQUIRED' if validate else 'CERT_NONE'
256 warnings.warn(
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900257 'validate is deprecated. please use cert_reqs=ssl.%s instead'
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900258 % cert_reqs_name,
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900259 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900260 if 'cert_reqs' in kwargs:
261 raise TypeError('Cannot specify both validate and cert_reqs')
262 kwargs['cert_reqs'] = ssl.CERT_REQUIRED if validate else ssl.CERT_NONE
263
264 unix_socket = kwargs.pop('unix_socket', None)
Junf6511c92019-02-01 12:07:58 +0800265 socket_keepalive = kwargs.pop('socket_keepalive', False)
Nobuaki Sukegawaf32bae72016-02-20 08:51:33 +0900266 self._validate_callback = kwargs.pop('validate_callback', _match_hostname)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900267 TSSLBase.__init__(self, False, host, kwargs)
Junf6511c92019-02-01 12:07:58 +0800268 TSocket.TSocket.__init__(self, host, port, unix_socket,
269 socket_keepalive=socket_keepalive)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900270
James E. King III638c91f2019-01-26 10:33:04 -0500271 def close(self):
272 try:
273 self.handle.settimeout(0.001)
274 self.handle = self.handle.unwrap()
275 except (ssl.SSLError, socket.error, OSError):
276 # could not complete shutdown in a reasonable amount of time. bail.
277 pass
278 TSocket.TSocket.close(self)
279
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900280 @property
281 def validate(self):
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900282 warnings.warn('validate is deprecated. please use cert_reqs instead',
283 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900284 return self.cert_reqs != ssl.CERT_NONE
285
286 @validate.setter
287 def validate(self, value):
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900288 warnings.warn('validate is deprecated. please use cert_reqs instead',
289 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900290 self.cert_reqs = ssl.CERT_REQUIRED if value else ssl.CERT_NONE
291
Nobuaki Sukegawa1c8b5cb2016-02-14 22:04:38 +0900292 def _do_open(self, family, socktype):
293 plain_sock = socket.socket(family, socktype)
Bryan Duxbury2b969ad2011-02-22 18:20:53 +0000294 try:
Nobuaki Sukegawa1c8b5cb2016-02-14 22:04:38 +0900295 return self._wrap_socket(plain_sock)
James E. King III3131fe92019-07-02 14:21:05 -0400296 except Exception as ex:
Nobuaki Sukegawa1c8b5cb2016-02-14 22:04:38 +0900297 plain_sock.close()
298 msg = 'failed to initialize SSL'
299 logger.exception(msg)
James E. King III3131fe92019-07-02 14:21:05 -0400300 raise TTransportException(type=TTransportException.NOT_OPEN, message=msg, inner=ex)
Bryan Duxbury50409112011-03-21 17:59:49 +0000301
Nobuaki Sukegawa1c8b5cb2016-02-14 22:04:38 +0900302 def open(self):
303 super(TSSLSocket, self).open()
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900304 if self._should_verify:
305 self.peercert = self.handle.getpeercert()
306 try:
307 self._validate_callback(self.peercert, self._server_hostname)
308 self.is_valid = True
309 except TTransportException:
310 raise
311 except Exception as ex:
James E. King III3131fe92019-07-02 14:21:05 -0400312 raise TTransportException(message=str(ex), inner=ex)
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900313
Bryan Duxbury2b969ad2011-02-22 18:20:53 +0000314
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900315class TSSLServerSocket(TSocket.TServerSocket, TSSLBase):
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900316 """SSL implementation of TServerSocket
Bryan Duxbury50409112011-03-21 17:59:49 +0000317
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900318 This uses the ssl module's wrap_socket() method to provide SSL
319 negotiated encryption.
Bryan Duxbury50409112011-03-21 17:59:49 +0000320 """
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900321
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900322 # New signature
323 # def __init__(self, host='localhost', port=9090, unix_socket=None, **ssl_args):
324 # Deprecated signature
325 # def __init__(self, host=None, port=9090, certfile='cert.pem', unix_socket=None, ciphers=None):
326 def __init__(self, host=None, port=9090, *args, **kwargs):
327 """Positional arguments: ``host``, ``port``, ``unix_socket``
Nobuaki Sukegawaad835862015-12-23 23:32:09 +0900328
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900329 Keyword arguments: ``keyfile``, ``certfile``, ``cert_reqs``, ``ssl_version``,
330 ``ca_certs``, ``ciphers`` (Python 2.7.0 or later)
331 See ssl.wrap_socket documentation.
Bryan Duxbury50409112011-03-21 17:59:49 +0000332
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900333 Alternative keyword arguments: (Python 2.7.9 or later)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900334 ``ssl_context``: ssl.SSLContext to be used for SSLContext.wrap_socket
335 ``server_hostname``: Passed to SSLContext.wrap_socket
Nobuaki Sukegawaf39f7db2016-02-04 15:09:41 +0900336
337 Common keyword argument:
338 ``validate_callback`` (cert, hostname) -> None:
339 Called after SSL handshake. Can raise when hostname does not
340 match the cert.
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900341 """
342 if args:
343 if len(args) > 3:
344 raise TypeError('Too many positional argument')
345 if not self._unix_socket_arg(host, port, args, kwargs):
346 self._deprecated_arg(args, kwargs, 0, 'certfile')
347 self._deprecated_arg(args, kwargs, 1, 'unix_socket')
348 self._deprecated_arg(args, kwargs, 2, 'ciphers')
Bryan Duxbury69720412012-01-03 17:32:30 +0000349
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900350 if 'ssl_context' not in kwargs:
351 # Preserve existing behaviors for default values
352 if 'cert_reqs' not in kwargs:
353 kwargs['cert_reqs'] = ssl.CERT_NONE
354 if'certfile' not in kwargs:
355 kwargs['certfile'] = 'cert.pem'
Bryan Duxbury69720412012-01-03 17:32:30 +0000356
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900357 unix_socket = kwargs.pop('unix_socket', None)
Nobuaki Sukegawaf39f7db2016-02-04 15:09:41 +0900358 self._validate_callback = \
Nobuaki Sukegawaf32bae72016-02-20 08:51:33 +0900359 kwargs.pop('validate_callback', _match_hostname)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900360 TSSLBase.__init__(self, True, None, kwargs)
361 TSocket.TServerSocket.__init__(self, host, port, unix_socket)
Nobuaki Sukegawaf32bae72016-02-20 08:51:33 +0900362 if self._should_verify and not _match_has_ipaddress:
Nobuaki Sukegawabf9fa902016-09-04 18:49:21 +0900363 raise ValueError('Need ipaddress and backports.ssl_match_hostname '
Nobuaki Sukegawaf32bae72016-02-20 08:51:33 +0900364 'module to verify client certificate')
Bryan Duxbury50409112011-03-21 17:59:49 +0000365
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900366 def setCertfile(self, certfile):
Nobuaki Sukegawa25536ad2016-02-04 15:08:55 +0900367 """Set or change the server certificate file used to wrap new
368 connections.
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900369
370 @param certfile: The filename of the server certificate,
371 i.e. '/etc/certs/server.pem'
372 @type certfile: str
373
374 Raises an IOError exception if the certfile is not present or unreadable.
375 """
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900376 warnings.warn(
377 'setCertfile is deprecated. please use certfile property instead.',
378 DeprecationWarning, stacklevel=2)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900379 self.certfile = certfile
380
381 def accept(self):
382 plain_client, addr = self.handle.accept()
383 try:
384 client = self._wrap_socket(plain_client)
James E. King IIIf5f430d2018-06-08 03:37:55 +0000385 except (ssl.SSLError, socket.error, OSError):
Nobuaki Sukegawace1c8ab2016-02-11 18:21:39 +0900386 logger.exception('Error while accepting from %s', addr)
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900387 # failed handshake/ssl wrap, close socket to client
388 plain_client.close()
389 # raise
390 # We can't raise the exception, because it kills most TServer derived
391 # serve() methods.
392 # Instead, return None, and let the TServer instance deal with it in
393 # other exception handling. (but TSimpleServer dies anyway)
394 return None
Nobuaki Sukegawaf39f7db2016-02-04 15:09:41 +0900395
396 if self._should_verify:
397 client.peercert = client.getpeercert()
398 try:
399 self._validate_callback(client.peercert, addr[0])
400 client.is_valid = True
401 except Exception:
Alexander Shadchin0bc2cb92024-07-21 23:27:26 +0300402 logger.warning('Failed to validate client certificate address: %s',
403 addr[0], exc_info=True)
Nobuaki Sukegawaf39f7db2016-02-04 15:09:41 +0900404 client.close()
405 plain_client.close()
406 return None
407
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900408 result = TSocket.TSocket()
Nobuaki Sukegawa6a0ca7f2016-02-13 03:11:16 +0900409 result.handle = client
Nobuaki Sukegawa10308cb2016-02-03 01:57:03 +0900410 return result