1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
#!/usr/bin/env python3
#
# Copyright VyOS maintainers and contributors <maintainers@vyos.io>
#
# 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/>.
#
#
import os
import sys
import json
import requests
import urllib3
import logging
from typing import Optional, List, Tuple, Dict, Any
from vyos.config import Config
from vyos.configtree import ConfigTree
from vyos.configtree import mask_inclusive
from vyos.configtree import mask_exclusive
from vyos.defaults import config_sync_exclusion_list
from vyos.derivedtree import subtree_from_list_of_partial_paths
from vyos.template import bracketize_ipv6
CONFIG_FILE = '/run/config_sync_conf.conf'
# Logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
logger.name = os.path.basename(__file__)
# API
API_HEADERS = {'Content-Type': 'application/json'}
def post_request(
url: str,
data: str,
params: Dict[str, Any],
headers: Dict[str, str],
) -> requests.Response:
"""Sends a POST request to the specified URL
Args:
url (str): The URL to send the POST request to.
data (Dict[str, Any]): The data to send with the POST request.
headers (Dict[str, str]): The headers to include with the POST request.
Returns:
requests.Response: The response object representing the server's response to the request
"""
response = requests.post(
url,
data=data,
params=params,
headers=headers,
verify=False,
timeout=timeout,
)
return response
def retrieve_config(
sections: List[list[str]], exclusions: List[list[str]]
) -> Tuple[Dict[str, Any], Dict[str, Any]]:
"""Retrieves the configuration from the local server.
Args:
sections: List[list[str]]: The list of sections of the configuration
to retrieve, given as list of paths.
Returns:
Tuple[Dict[str, Any],Dict[str,Any]]: The tuple (mask, config) where:
- mask: The tree of paths of sections, as a dictionary.
- config: The subtree of masked config data, as a dictionary.
"""
config = Config()
config_tree = config.get_config_tree()
# set inclusion mask
mask_in = ConfigTree('')
for section in sections:
mask_in.set(section)
mask_in_str = mask_in.write_internal_string()
## set exclusion mask
# pass global settings, read at startup:
exclude_list = exclusions
# read local settings from Config
# ... exclude_list += ...
mask_ex = subtree_from_list_of_partial_paths(config_tree, exclude_list)
mask_ex_str = json.dumps(exclude_list)
masked = mask_inclusive(config_tree, mask_in)
masked = mask_exclusive(masked, mask_ex)
mask_dict = {'inclusive': mask_in_str, 'exclusive': mask_ex_str}
config_dict = json.loads(masked.to_json())
return mask_dict, config_dict
def set_remote_config(
address: str,
key: str,
op: str,
mask: Dict[str, Any],
config: Dict[str, Any],
port: int) -> Optional[Dict[str, Any]]:
"""Loads the VyOS configuration in JSON format to a remote host.
Args:
address (str): The address of the remote host.
key (str): The key to use for loading the configuration.
op (str): The operation to perform (set or load).
mask (dict): The dict of paths in sections.
config (dict): The dict of masked config data.
port (int): The remote API port
Returns:
Optional[Dict[str, Any]]: The response from the remote host as a
dictionary, or None if a RequestException occurred.
"""
headers = {'Content-Type': 'application/json'}
# Disable the InsecureRequestWarning
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
url = f'https://{address}:{port}/configure-section'
params = {
# Ask the remote API to perform the configure and commit workflow asynchronously
'in_background': True,
}
data = json.dumps({
'op': op,
'mask': mask,
'config': config,
'key': key
})
try:
config = post_request(url, data, params, headers)
return config.json()
except requests.exceptions.RequestException as e:
print(f"An error occurred: {e}")
logger.error(f"An error occurred: {e}")
return None
def is_section_revised(section: List[str]) -> bool:
from vyos.config_mgmt import is_node_revised
return is_node_revised(section)
def config_sync(
secondary_address: str,
secondary_key: str,
sections: List[list[str]],
mode: str,
secondary_port: int,
exclusions: List[list[str]],
):
"""Retrieve a config section from primary router in JSON format and send it to
secondary router
"""
# pylint: disable=too-many-arguments
if not any(map(is_section_revised, sections)):
return
logger.info(
f"Config synchronization: Mode={mode}, Secondary={secondary_address}"
)
# Sync sections ("nat", "firewall", etc)
mask_dict, config_dict = retrieve_config(sections, exclusions)
logger.debug(
f"Retrieved config for sections '{sections}': {config_dict}")
set_config = set_remote_config(address=secondary_address,
key=secondary_key,
op=mode,
mask=mask_dict,
config=config_dict,
port=secondary_port)
logger.debug(f"Set config for sections '{sections}': {set_config}")
if __name__ == '__main__':
# Read configuration from file
if not os.path.exists(CONFIG_FILE):
logger.error(f"Post-commit: No config file '{CONFIG_FILE}' exists")
sys.exit()
try:
with open(config_sync_exclusion_list) as f:
exclude_list = json.load(f)
except FileNotFoundError:
logger.error(f"Exclusion list '{config_sync_exclusion_list}' not found")
sys.exit()
except (json.JSONDecodeError, OSError) as e:
logger.error(
f"Failed to load config-sync exclusion list '{config_sync_exclusion_list}': {e}"
)
sys.exit()
with open(CONFIG_FILE, 'r') as f:
config_data = f.read()
config = json.loads(config_data)
mode = config.get('mode')
secondary_address = config.get('secondary', {}).get('address')
secondary_address = bracketize_ipv6(secondary_address)
secondary_key = config.get('secondary', {}).get('key')
secondary_port = int(config.get('secondary', {}).get('port', 443))
sections = config.get('section')
timeout = int(config.get('secondary', {}).get('timeout'))
if not all([mode, secondary_address, secondary_key, sections]):
logger.error("Missing required configuration data for config synchronization.")
sys.exit()
# Generate list_sections of sections/subsections
# [
# ['interfaces', 'pseudo-ethernet'], ['interfaces', 'virtual-ethernet'], ['nat'], ['nat66']
# ]
list_sections = []
for section, subsections in sections.items():
if subsections:
for subsection in subsections:
list_sections.append([section, subsection])
else:
list_sections.append([section])
config_sync(
secondary_address,
secondary_key,
list_sections,
mode,
secondary_port,
exclude_list,
)
|