mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
92 lines
2.6 KiB
C
92 lines
2.6 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "conf-parser-forward.h"
|
|
#include "shared-forward.h"
|
|
|
|
int fw_nftables_add_masquerade(
|
|
sd_netlink *nfnl,
|
|
bool add,
|
|
int af,
|
|
const union in_addr_union *source,
|
|
unsigned source_prefixlen);
|
|
|
|
int fw_nftables_add_local_dnat(
|
|
sd_netlink *nfnl,
|
|
bool add,
|
|
int af,
|
|
int protocol,
|
|
uint16_t local_port,
|
|
const union in_addr_union *remote,
|
|
uint16_t remote_port,
|
|
const union in_addr_union *previous_remote);
|
|
|
|
typedef enum NFTSetSource {
|
|
NFT_SET_SOURCE_ADDRESS,
|
|
NFT_SET_SOURCE_PREFIX,
|
|
NFT_SET_SOURCE_IFINDEX,
|
|
NFT_SET_SOURCE_CGROUP,
|
|
NFT_SET_SOURCE_USER,
|
|
NFT_SET_SOURCE_GROUP,
|
|
_NFT_SET_SOURCE_MAX,
|
|
_NFT_SET_SOURCE_INVALID = -EINVAL,
|
|
} NFTSetSource;
|
|
|
|
typedef struct NFTSet {
|
|
NFTSetSource source;
|
|
int nfproto;
|
|
char *table;
|
|
char *set;
|
|
} NFTSet;
|
|
|
|
typedef struct NFTSetContext {
|
|
NFTSet *sets;
|
|
size_t n_sets;
|
|
} NFTSetContext;
|
|
|
|
void nft_set_context_clear(NFTSetContext *s);
|
|
int nft_set_context_dup(const NFTSetContext *src, NFTSetContext *dst);
|
|
|
|
const char* nfproto_to_string(int i) _const_;
|
|
int nfproto_from_string(const char *s) _pure_;
|
|
|
|
const char* nft_set_source_to_string(int i) _const_;
|
|
int nft_set_source_from_string(const char *s) _pure_;
|
|
|
|
int nft_set_element_modify_iprange(
|
|
sd_netlink *nfnl,
|
|
bool add,
|
|
int nfproto,
|
|
int af,
|
|
const char *table,
|
|
const char *set,
|
|
const union in_addr_union *source,
|
|
unsigned source_prefixlen);
|
|
|
|
int nft_set_element_modify_ip(
|
|
sd_netlink *nfnl,
|
|
bool add,
|
|
int nfproto,
|
|
int af,
|
|
const char *table,
|
|
const char *set,
|
|
const union in_addr_union *source);
|
|
|
|
int nft_set_element_modify_any(
|
|
sd_netlink *nfnl,
|
|
bool add,
|
|
int nfproto,
|
|
const char *table,
|
|
const char *set,
|
|
const void *element,
|
|
size_t element_size);
|
|
|
|
int nft_set_add(NFTSetContext *s, NFTSetSource source, int nfproto, const char *table, const char *set);
|
|
|
|
typedef enum NFTSetParseFlags {
|
|
NFT_SET_PARSE_NETWORK,
|
|
NFT_SET_PARSE_CGROUP,
|
|
} NFTSetParseFlags;
|
|
|
|
CONFIG_PARSER_PROTOTYPE(config_parse_nft_set);
|