Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove certfile,keyfile,password from TLS client #2121

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions API_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Versions (X.Y.Z) where Z > 0 e.g. 3.0.1 do NOT have API changes!
API changes 3.7.0
-----------------
- class method generate_ssl() added to TLS client (sync/async).
- removed certfile, keyfile, password from TLS client, please use generate_ssl()


API changes 3.6.0
Expand Down
7 changes: 4 additions & 3 deletions examples/client_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,11 @@ def setup_async_client(description=None, cmdline=None):
# retries=3,
# retry_on_empty=False,
# TLS setup parameters
# sslctx=sslctx,
certfile=helper.get_certificate("crt"),
keyfile=helper.get_certificate("key"),
sslctx=modbusClient.AsyncModbusTlsClient.generate_ssl(
certfile=helper.get_certificate("crt"),
keyfile=helper.get_certificate("key"),
# password="none",
),
server_hostname="localhost",
)
return client
Expand Down
7 changes: 4 additions & 3 deletions examples/client_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@ def setup_sync_client(description=None, cmdline=None):
# retries=3,
# retry_on_empty=False,
# TLS setup parameters
# sslctx=None,
certfile=helper.get_certificate("crt"),
keyfile=helper.get_certificate("key"),
sslctx=modbusClient.ModbusTlsClient.generate_ssl(
certfile=helper.get_certificate("crt"),
keyfile=helper.get_certificate("key"),
# password=None,
),
server_hostname="localhost",
)
return client
Expand Down
24 changes: 4 additions & 20 deletions pymodbus/client/tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ class AsyncModbusTlsClient(AsyncModbusTcpClient):
:param port: Port used for communication
:param source_address: Source address of client
:param sslctx: SSLContext to use for TLS
:param certfile: Cert file path for TLS server request
:param keyfile: Key file path for TLS server request
:param password: Password for for decrypting private key file
:param server_hostname: Bind certificate to host

Common optional parameters:
Expand Down Expand Up @@ -60,10 +57,7 @@ def __init__(
host: str,
port: int = 802,
framer: Framer = Framer.TLS,
sslctx: ssl.SSLContext | None = None,
certfile: str | None = None,
keyfile: str | None = None,
password: str | None = None,
sslctx: ssl.SSLContext = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT),
server_hostname: str | None = None,
**kwargs: Any,
):
Expand All @@ -74,9 +68,7 @@ def __init__(
port=port,
framer=framer,
CommType=CommType.TLS,
sslctx=CommParams.generate_ssl(
False, certfile, keyfile, password, sslctx=sslctx
),
sslctx=sslctx,
**kwargs,
)
self.server_hostname = server_hostname
Expand Down Expand Up @@ -125,9 +117,6 @@ class ModbusTlsClient(ModbusTcpClient):
:param port: Port used for communication
:param source_address: Source address of client
:param sslctx: SSLContext to use for TLS
:param certfile: Cert file path for TLS server request
:param keyfile: Key file path for TLS server request
:param password: Password for decrypting private key file
:param server_hostname: Bind certificate to host
:param kwargs: Experimental parameters

Expand Down Expand Up @@ -165,20 +154,15 @@ def __init__(
host: str,
port: int = 802,
framer: Framer = Framer.TLS,
sslctx: ssl.SSLContext | None = None,
certfile: str | None = None,
keyfile: str | None = None,
password: str | None = None,
sslctx: ssl.SSLContext = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT),
server_hostname: str | None = None,
**kwargs: Any,
):
"""Initialize Modbus TLS Client."""
super().__init__(
host, CommType=CommType.TLS, port=port, framer=framer, **kwargs
)
self.sslctx = CommParams.generate_ssl(
False, certfile, keyfile, password, sslctx=sslctx
)
self.sslctx = sslctx
self.server_hostname = server_hostname


Expand Down
24 changes: 20 additions & 4 deletions test/sub_client/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import pymodbus.other_message as pdu_other_msg
import pymodbus.register_read_message as pdu_reg_read
import pymodbus.register_write_message as pdu_req_write
from examples.helper import get_certificate
from pymodbus import Framer
from pymodbus.client.base import ModbusBaseClient
from pymodbus.client.mixin import ModbusClientMixin
Expand Down Expand Up @@ -516,25 +517,40 @@ def test_client_tcp_reuse():

def test_client_tls_connect():
"""Test the tls client connection method."""
sslctx=lib_client.ModbusTlsClient.generate_ssl(
certfile=get_certificate("crt"),
keyfile=get_certificate("key"),
)
with mock.patch.object(ssl.SSLSocket, "connect") as mock_method:
client = lib_client.ModbusTlsClient("127.0.0.1")
client = lib_client.ModbusTlsClient(
"127.0.0.1",
sslctx=sslctx,
)
assert client.connect()

with mock.patch.object(socket, "create_connection") as mock_method:
mock_method.side_effect = OSError()
client = lib_client.ModbusTlsClient("127.0.0.1")
client = lib_client.ModbusTlsClient("127.0.0.1", sslctx=sslctx)
assert not client.connect()


def test_client_tls_connect2():
"""Test the tls client connection method."""
sslctx=lib_client.ModbusTlsClient.generate_ssl(
certfile=get_certificate("crt"),
keyfile=get_certificate("key"),
)
with mock.patch.object(ssl.SSLSocket, "connect") as mock_method:
client = lib_client.ModbusTlsClient("127.0.0.1", source_address=("0.0.0.0", 0))
client = lib_client.ModbusTlsClient(
"127.0.0.1",
sslctx=sslctx,
source_address=("0.0.0.0", 0)
)
assert client.connect()

with mock.patch.object(socket, "create_connection") as mock_method:
mock_method.side_effect = OSError()
client = lib_client.ModbusTlsClient("127.0.0.1")
client = lib_client.ModbusTlsClient("127.0.0.1", sslctx=sslctx)
assert not client.connect()


Expand Down