summaryrefslogtreecommitdiff
path: root/plugins/modules/vyos_firewall_global.py
blob: 66cdabc0eff2fd242a7a9aa836b40b1c8dc36594 (plain)
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#!/usr/bin/python
# -*- coding: utf-8 -*-
# GNU General Public License v3.0+
from __future__ import absolute_import, division, print_function


__metaclass__ = type

DOCUMENTATION = r"""
---
module: vyos_firewall_global
short_description: Manage global firewall configuration on VyOS devices using REST API
description:
  - Manages global firewall group configuration on VyOS devices via the REST API.
  - Covers address-groups, network-groups, port-groups, interface-groups,
    and IPv6 network-groups.
  - Uses REST API (C(connection=httpapi)) instead of CLI.
version_added: "1.0.0"
author:
  - VyOS Community (@vyos)
options:
  config:
    description: Global firewall configuration.
    type: dict
    suboptions:
      group:
        description: Firewall groups.
        type: dict
        suboptions:
          address_group:
            description: IPv4 address groups.
            type: list
            elements: dict
            suboptions:
              name:
                description: Group name.
                type: str
                required: true
              description:
                description: Group description.
                type: str
              address:
                description: IP addresses or ranges in the group.
                type: list
                elements: str
          network_group:
            description: IPv4 network groups.
            type: list
            elements: dict
            suboptions:
              name:
                description: Group name.
                type: str
                required: true
              description:
                description: Group description.
                type: str
              network:
                description: Network prefixes in the group.
                type: list
                elements: str
          port_group:
            description: Port groups.
            type: list
            elements: dict
            suboptions:
              name:
                description: Group name.
                type: str
                required: true
              description:
                description: Group description.
                type: str
              port:
                description: Ports or port ranges in the group.
                type: list
                elements: str
          interface_group:
            description: Interface groups.
            type: list
            elements: dict
            suboptions:
              name:
                description: Group name.
                type: str
                required: true
              description:
                description: Group description.
                type: str
              interface:
                description: Interfaces in the group.
                type: list
                elements: str
          ipv6_network_group:
            description: IPv6 network groups.
            type: list
            elements: dict
            suboptions:
              name:
                description: Group name.
                type: str
                required: true
              description:
                description: Group description.
                type: str
              network:
                description: IPv6 network prefixes in the group.
                type: list
                elements: str
  state:
    description:
      - Desired state of the firewall global configuration.
      - C(merged) adds or updates without removing existing config.
      - C(replaced) replaces the entire firewall global configuration.
      - C(deleted) removes firewall global configuration.
      - C(gathered) returns current configuration as structured data.
    type: str
    choices: [merged, replaced, deleted, gathered]
    default: merged
notes:
  - Requires C(ansible_connection=httpapi) with the VyOS httpapi plugin.
  - C(ansible_network_os) must be set to C(vyos.rest.vyos).
"""

EXAMPLES = r"""
- name: Merge firewall global configuration
  vyos.rest.vyos_firewall_global:
    config:
      group:
        address_group:
          - name: SERVERS
            description: Web servers
            address:
              - 192.168.1.10
              - 192.168.1.11
        network_group:
          - name: LAN
            network:
              - 192.168.0.0/16
        port_group:
          - name: WEB-PORTS
            port:
              - "80"
              - "443"
        interface_group:
          - name: LAN-IFACES
            interface:
              - eth1
              - eth2
        ipv6_network_group:
          - name: IPV6-LAN
            network:
              - "2001:db8::/32"
    state: merged

- name: Delete all firewall global configuration
  vyos.rest.vyos_firewall_global:
    state: deleted

- name: Gather firewall global configuration
  vyos.rest.vyos_firewall_global:
    state: gathered
"""

RETURN = r"""
before:
  description: Firewall global configuration before this module ran.
  returned: always
  type: dict
after:
  description: Firewall global configuration after this module ran.
  returned: when changed
  type: dict
commands:
  description: List of API command tuples sent to the device.
  returned: always
  type: list
gathered:
  description: Current firewall global configuration as structured data.
  returned: when state is gathered
  type: dict
saved:
  description: Whether the config was saved after changes.
  returned: when changes are applied
  type: bool
response:
  description: Raw API response.
  returned: when changes are applied
  type: dict
"""

from ansible.module_utils.basic import AnsibleModule
from ansible_collections.vyos.rest.plugins.module_utils.vyos import VyOSModule


_BASE = ["firewall", "group"]

# Map argspec key -> API key, value key
_GROUP_TYPES = {
    "address_group": ("address-group", "address"),
    "network_group": ("network-group", "network"),
    "port_group": ("port-group", "port"),
    "interface_group": ("interface-group", "interface"),
    "ipv6_network_group": ("ipv6-network-group", "network"),
}


def _parse_group_type(raw, val_key):
    """Parse a group dict from API raw data."""
    if not raw or not isinstance(raw, dict):
        return []
    result = []
    for name, data in sorted(raw.items()):
        entry = {"name": name}
        data = data or {}
        if data.get("description"):
            entry["description"] = data["description"]
        val = data.get(val_key)
        if val is not None:
            if isinstance(val, list):
                entry[val_key.replace("-", "_")] = val
            elif isinstance(val, str):
                entry[val_key.replace("-", "_")] = [val]
            elif isinstance(val, dict):
                entry[val_key.replace("-", "_")] = list(val.keys())
        result.append(entry)
    return result


def get_running_config(vyos):
    raw = vyos.get_config(_BASE)
    if not raw or not isinstance(raw, dict):
        return {}
    result = {"group": {}}

    for arg_key, (api_key, val_key) in _GROUP_TYPES.items():
        groups = _parse_group_type(raw.get(api_key), val_key)
        if groups:
            result["group"][arg_key] = groups

    if not result["group"]:
        return {}
    return result


def _group_cmds(arg_key, groups, have_groups, state):
    cmds = []
    api_key, val_key = _GROUP_TYPES[arg_key]
    have_map = {g["name"]: g for g in (have_groups or [])}
    want_map = {g["name"]: g for g in (groups or [])}

    if state == "replaced":
        for name in set(have_map) - set(want_map):
            cmds.append(("delete", _BASE + [api_key, name]))

    for name, group in want_map.items():
        have_group = have_map.get(name, {})
        gbase = _BASE + [api_key, name]

        if group.get("description") and group["description"] != have_group.get("description"):
            cmds.append(("set", gbase + ["description", group["description"]]))

        # normalize val_key for argspec (underscores)
        arg_val_key = val_key.replace("-", "_")
        want_vals = set(group.get(arg_val_key) or [])
        have_vals = set(have_group.get(arg_val_key) or [])

        for val in want_vals - have_vals:
            cmds.append(("set", gbase + [val_key, val]))

        if state == "replaced":
            for val in have_vals - want_vals:
                cmds.append(("delete", gbase + [val_key, val]))

    return cmds


def build_commands(config, have, state):
    cmds = []

    if state == "deleted":
        if have:
            cmds.append(("delete", _BASE))
        return cmds

    if state == "replaced":
        # Check if anything differs
        would_set = build_commands(config, {}, "merged")
        have_set = build_commands(have, {}, "merged")
        if would_set == have_set:
            return []

    config = config or {}
    want_group = config.get("group") or {}
    have_group = have.get("group") or {}

    for arg_key in _GROUP_TYPES:
        want_groups = want_group.get(arg_key) or []
        have_groups = have_group.get(arg_key) or []
        if want_groups or (state == "replaced" and have_groups):
            cmds += _group_cmds(arg_key, want_groups, have_groups, state)

    return cmds


ARGUMENT_SPEC = dict(
    config=dict(
        type="dict",
        options=dict(
            group=dict(
                type="dict",
                options=dict(
                    address_group=dict(
                        type="list",
                        elements="dict",
                        options=dict(
                            name=dict(type="str", required=True),
                            description=dict(type="str"),
                            address=dict(type="list", elements="str"),
                        ),
                    ),
                    network_group=dict(
                        type="list",
                        elements="dict",
                        options=dict(
                            name=dict(type="str", required=True),
                            description=dict(type="str"),
                            network=dict(type="list", elements="str"),
                        ),
                    ),
                    port_group=dict(
                        type="list",
                        elements="dict",
                        options=dict(
                            name=dict(type="str", required=True),
                            description=dict(type="str"),
                            port=dict(type="list", elements="str"),
                        ),
                    ),
                    interface_group=dict(
                        type="list",
                        elements="dict",
                        options=dict(
                            name=dict(type="str", required=True),
                            description=dict(type="str"),
                            interface=dict(type="list", elements="str"),
                        ),
                    ),
                    ipv6_network_group=dict(
                        type="list",
                        elements="dict",
                        options=dict(
                            name=dict(type="str", required=True),
                            description=dict(type="str"),
                            network=dict(type="list", elements="str"),
                        ),
                    ),
                ),
            ),
        ),
    ),
    state=dict(
        default="merged",
        choices=["merged", "replaced", "deleted", "gathered"],
    ),
)


def main():
    module = AnsibleModule(ARGUMENT_SPEC, supports_check_mode=True)
    vyos = VyOSModule(module)

    state = module.params["state"]
    config = module.params.get("config") or {}

    have = get_running_config(vyos)

    if state == "gathered":
        module.exit_json(changed=False, gathered=have)

    commands = build_commands(config, have, state)

    if module.check_mode:
        module.exit_json(changed=bool(commands), commands=commands, before=have)

    if commands:
        response = vyos.apply_commands(commands)
        saved = vyos.save_config()
        module.exit_json(
            changed=True,
            before=have,
            after=get_running_config(vyos),
            commands=commands,
            saved=saved,
            response=response,
        )

    module.exit_json(changed=False, before=have, after=have, commands=[])


if __name__ == "__main__":
    main()