]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-routing-policy-rule.h
network: refuse the case To= and From= are in different address family
[thirdparty/systemd.git] / src / network / networkd-routing-policy-rule.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
bce67bbe
SS
2#pragma once
3
bce67bbe 4#include <inttypes.h>
9aa5d8ba 5#include <netinet/in.h>
926062f0 6#include <linux/fib_rules.h>
bce67bbe
SS
7#include <stdbool.h>
8
9#include "in-addr-util.h"
a2106925 10#include "conf-parser.h"
bce67bbe
SS
11
12typedef struct RoutingPolicyRule RoutingPolicyRule;
13
14#include "networkd-link.h"
15#include "networkd-network.h"
fcbf4cb7 16#include "networkd-util.h"
bce67bbe
SS
17
18typedef struct Network Network;
19typedef struct Link Link;
20typedef struct NetworkConfigSection NetworkConfigSection;
36e6e28b 21typedef struct Manager Manager;
bce67bbe
SS
22
23struct RoutingPolicyRule {
6964cf45 24 Manager *manager;
bce67bbe
SS
25 Network *network;
26 Link *link;
27 NetworkConfigSection *section;
28
8b220643
SS
29 bool invert_rule;
30
bce67bbe 31 uint8_t tos;
926062f0 32 uint8_t protocol;
bce67bbe
SS
33
34 uint32_t table;
35 uint32_t fwmark;
36 uint32_t fwmask;
37 uint32_t priority;
38
39 int family;
40 unsigned char to_prefixlen;
41 unsigned char from_prefixlen;
42
762e2659
SS
43 char *iif;
44 char *oif;
45
bce67bbe
SS
46 union in_addr_union to;
47 union in_addr_union from;
48
926062f0
SS
49 struct fib_rule_port_range sport;
50 struct fib_rule_port_range dport;
51
bce67bbe
SS
52 LIST_FIELDS(RoutingPolicyRule, rules);
53};
54
55int routing_policy_rule_new(RoutingPolicyRule **ret);
56void routing_policy_rule_free(RoutingPolicyRule *rule);
57
fcbf4cb7 58DEFINE_NETWORK_SECTION_FUNCTIONS(RoutingPolicyRule, routing_policy_rule_free);
0aabccc8 59int routing_policy_rule_section_verify(RoutingPolicyRule *rule);
bce67bbe 60
9f08a578 61int routing_policy_rule_configure(RoutingPolicyRule *address, Link *link, link_netlink_message_handler_t callback);
302a796f 62int routing_policy_rule_remove(RoutingPolicyRule *routing_policy_rule, Link *link, link_netlink_message_handler_t callback);
bce67bbe 63
b80a511b
YW
64int routing_policy_rule_add_foreign(Manager *m, RoutingPolicyRule *rule, RoutingPolicyRule **ret);
65int routing_policy_rule_get(Manager *m, RoutingPolicyRule *rule, RoutingPolicyRule **ret);
bce67bbe 66int routing_policy_rule_make_local(Manager *m, RoutingPolicyRule *rule);
458d8ae3
ZJS
67int routing_policy_serialize_rules(Set *rules, FILE *f);
68int routing_policy_load_rules(const char *state_file, Set **rules);
bce67bbe
SS
69void routing_policy_rule_purge(Manager *m, Link *link);
70
a2106925
LP
71CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_tos);
72CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_table);
73CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_fwmark_mask);
74CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_prefix);
75CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_priority);
76CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_device);
926062f0 77CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_port_range);
97f9df9e 78CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_ip_protocol);
8b220643 79CONFIG_PARSER_PROTOTYPE(config_parse_routing_policy_rule_invert);