-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openconnect: T4982: Support defining minimum TLS version in openconne…
…ct VPN
- Loading branch information
Showing
7 changed files
with
104 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!-- include start from tls-version-min.xml.i --> | ||
<leafNode name="tls-version-min"> | ||
<properties> | ||
<help>Specify the minimum required TLS version</help> | ||
<completionHelp> | ||
<list>1.0 1.1 1.2 1.3</list> | ||
</completionHelp> | ||
<valueHelp> | ||
<format>1.0</format> | ||
<description>TLS v1.0</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>1.1</format> | ||
<description>TLS v1.1</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>1.2</format> | ||
<description>TLS v1.2</description> | ||
</valueHelp> | ||
<valueHelp> | ||
<format>1.3</format> | ||
<description>TLS v1.3</description> | ||
</valueHelp> | ||
<constraint> | ||
<regex>(1.0|1.1|1.2|1.3)</regex> | ||
</constraint> | ||
</properties> | ||
</leafNode> | ||
<!-- include end --> |
2 changes: 1 addition & 1 deletion
2
interface-definitions/include/version/openconnect-version.xml.i
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<!-- include start from include/version/openconnect-version.xml.i --> | ||
<syntaxVersion component='openconnect' version='2'></syntaxVersion> | ||
<syntaxVersion component='openconnect' version='3'></syntaxVersion> | ||
<!-- include end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/usr/bin/env python3 | ||
# | ||
# Copyright (C) 2024 VyOS maintainers and contributors | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License version 2 or later as | ||
# published by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
# T4982: Retain prior default TLS version (v1.0) when upgrading installations with existing openconnect configurations | ||
|
||
import sys | ||
|
||
from vyos.configtree import ConfigTree | ||
|
||
if len(sys.argv) < 2: | ||
print("Must specify file name!") | ||
sys.exit(1) | ||
|
||
file_name = sys.argv[1] | ||
|
||
with open(file_name, 'r') as f: | ||
config_file = f.read() | ||
|
||
|
||
config = ConfigTree(config_file) | ||
cfg_base = ['vpn', 'openconnect'] | ||
|
||
# bail out early if service is unconfigured | ||
if not config.exists(cfg_base): | ||
sys.exit(0) | ||
|
||
# new default is TLS 1.2 - set explicit old default value of TLS 1.0 for upgraded configurations to keep compatibility | ||
tls_min_path = cfg_base + ['tls-version-min'] | ||
if not config.exists(tls_min_path): | ||
config.set(tls_min_path, value='1.0') | ||
|
||
try: | ||
with open(file_name, 'w') as f: | ||
f.write(config.to_string()) | ||
except OSError as e: | ||
print("Failed to save the modified config: {}".format(e)) | ||
sys.exit(1) |