14#include <netlink/cli/utils.h>
15#include <netlink/cli/exp.h>
17struct nfnl_exp *nl_cli_exp_alloc(
void)
21 exp = nfnl_exp_alloc();
23 nl_cli_fatal(ENOMEM,
"Unable to allocate expectation object");
28struct nl_cache *nl_cli_exp_alloc_cache(
struct nl_sock *sk)
33void nl_cli_exp_parse_family(
struct nfnl_exp *exp,
char *arg)
37 if ((family = nl_str2af(arg)) == AF_UNSPEC)
39 "Unable to nl_cli_exp_parse family \"%s\": %s",
40 arg, nl_geterror(NLE_INVAL));
42 nfnl_exp_set_family(exp, family);
45void nl_cli_exp_parse_timeout(
struct nfnl_exp *exp,
char *arg)
48 nfnl_exp_set_timeout(exp, timeout);
51void nl_cli_exp_parse_id(
struct nfnl_exp *exp,
char *arg)
54 nfnl_exp_set_id(exp,
id);
57void nl_cli_exp_parse_helper_name(
struct nfnl_exp *exp,
char *arg)
59 nfnl_exp_set_helper_name(exp, arg);
62void nl_cli_exp_parse_zone(
struct nfnl_exp *exp,
char *arg)
65 nfnl_exp_set_zone(exp, zone);
68void nl_cli_exp_parse_flags(
struct nfnl_exp *exp,
char *arg)
71 nfnl_exp_set_flags(exp, flags);
74void nl_cli_exp_parse_class(
struct nfnl_exp *exp,
char *arg)
76 uint32_t
class = nl_cli_parse_u32(arg);
77 nfnl_exp_set_class(exp,
class);
80void nl_cli_exp_parse_nat_dir(
struct nfnl_exp *exp,
char *arg)
83 nfnl_exp_set_nat_dir(exp, nat_dir);
86void nl_cli_exp_parse_fn(
struct nfnl_exp *exp,
char *arg)
88 nfnl_exp_set_fn(exp, arg);
91void nl_cli_exp_parse_src(
struct nfnl_exp *exp,
int tuple,
char *arg)
94 struct nl_addr *a = nl_cli_addr_parse(arg, nfnl_exp_get_family(exp));
95 if ((err = nfnl_exp_set_src(exp, tuple, a)) < 0)
100void nl_cli_exp_parse_dst(
struct nfnl_exp *exp,
int tuple,
char *arg)
103 struct nl_addr *a = nl_cli_addr_parse(arg, nfnl_exp_get_family(exp));
104 if ((err = nfnl_exp_set_dst(exp, tuple, a)) < 0)
105 nl_cli_fatal(err,
"Unable to set destination address: %s",
109void nl_cli_exp_parse_l4protonum(
struct nfnl_exp *exp,
int tuple,
char *arg)
113 if ((l4protonum = nl_str2ip_proto(arg)) < 0)
115 "Unable to nl_cli_exp_parse protocol \"%s\": %s",
116 arg, nl_geterror(l4protonum));
118 nfnl_exp_set_l4protonum(exp, tuple, l4protonum);
121void nl_cli_exp_parse_src_port(
struct nfnl_exp *exp,
int tuple,
char *arg)
124 uint16_t dport = nfnl_exp_get_dst_port(exp, tuple);
125 nfnl_exp_set_ports(exp, tuple, sport, dport);
128void nl_cli_exp_parse_dst_port(
struct nfnl_exp *exp,
int tuple,
char *arg)
131 uint16_t sport = nfnl_exp_get_src_port(exp, tuple);
132 nfnl_exp_set_ports(exp, tuple, sport, dport);
135void nl_cli_exp_parse_icmp_id(
struct nfnl_exp *exp,
int tuple,
char *arg)
138 uint8_t type = nfnl_exp_get_icmp_type(exp, tuple);
139 uint8_t code = nfnl_exp_get_icmp_code(exp, tuple);
140 nfnl_exp_set_icmp(exp, tuple,
id, type, code);
143void nl_cli_exp_parse_icmp_type(
struct nfnl_exp *exp,
int tuple,
char *arg)
146 uint16_t
id = nfnl_exp_get_icmp_id(exp, tuple);
147 uint8_t code = nfnl_exp_get_icmp_code(exp, tuple);
148 nfnl_exp_set_icmp(exp, tuple,
id, type, code);
151void nl_cli_exp_parse_icmp_code(
struct nfnl_exp *exp,
int tuple,
char *arg)
154 uint16_t
id = nfnl_exp_get_icmp_id(exp, tuple);
155 uint8_t type = nfnl_exp_get_icmp_type(exp, tuple);
156 nfnl_exp_set_icmp(exp, tuple,
id, type, code);
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
uint32_t nl_cli_parse_u32(const char *arg)
Parse a text based 32 bit unsigned integer argument.
int nfnl_exp_alloc_cache(struct nl_sock *sk, struct nl_cache **result)
Build a expectation cache holding all expectations currently in the kernel.