summaryrefslogtreecommitdiffstats
path: root/extensions/libebt_mark_m.c
blob: 8ee172072823c4d538d5b8c52764b2ecb9a77b7b (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
/* ebt_mark_m
 *
 * Authors:
 * Bart De Schuymer <bdschuym@pandora.be>
 *
 * July, 2002
 *
 * Adapted by Arturo Borrero Gonzalez <arturo@debian.org>
 * to use libxtables for ebtables-compat in 2015.
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <xtables.h>
#include <linux/netfilter_bridge/ebt_mark_m.h>

enum {
	O_MARK = 0,
};

static const struct xt_option_entry brmark_m_opts[] = {
	{ .name = "mark", .id = O_MARK, .type = XTTYPE_STRING,
	  .flags = XTOPT_INVERT | XTOPT_MAND },
	XTOPT_TABLEEND,
};

static void brmark_m_print_help(void)
{
	printf(
"mark option:\n"
"[!] --mark    [value][/mask]: Match nfmask value (see man page)\n");
}

static void brmark_m_parse(struct xt_option_call *cb)
{
	struct ebt_mark_m_info *info = cb->data;
	char *end;

	xtables_option_parse(cb);

	switch (cb->entry->id) {
	case O_MARK:
		info->invert = cb->invert;
		info->mark = strtoul(cb->arg, &end, 0);
		info->bitmask = EBT_MARK_AND;
		if (*end == '/') {
			if (end == cb->arg)
				info->bitmask = EBT_MARK_OR;
			info->mask = strtoul(end+1, &end, 0);
		} else {
			info->mask = UINT32_MAX;
		}
		if (*end != '\0' || end == cb->arg)
			xtables_error(PARAMETER_PROBLEM, "Bad mark value '%s'",
				      cb->arg);
		break;
	}
}

static void brmark_m_print(const void *ip, const struct xt_entry_match *match,
			   int numeric)
{
	struct ebt_mark_m_info *info = (struct ebt_mark_m_info *)match->data;

	if (info->invert)
		printf("! ");
	printf("--mark ");
	if (info->bitmask == EBT_MARK_OR)
		printf("/0x%lx ", info->mask);
	else if (info->mask != 0xffffffff)
		printf("0x%lx/0x%lx ", info->mark, info->mask);
	else
		printf("0x%lx ", info->mark);
}

static int brmark_m_xlate(struct xt_xlate *xl,
			  const struct xt_xlate_mt_params *params)
{
	const struct ebt_mark_m_info *info = (const void*)params->match->data;
	enum xt_op op = XT_OP_EQ;

	if (info->invert)
		op = XT_OP_NEQ;

	xt_xlate_add(xl, "meta mark ");

	if (info->bitmask == EBT_MARK_OR) {
		xt_xlate_add(xl, "and 0x%x %s0 ", (uint32_t)info->mask,
			     info->invert ? "" : "!= ");
	} else if (info->mask != UINT32_MAX) {
		xt_xlate_add(xl, "and 0x%x %s0x%x ", (uint32_t)info->mask,
			   op == XT_OP_EQ ? "" : "!= ", (uint32_t)info->mark);
	} else {
		xt_xlate_add(xl, "%s0x%x ",
			   op == XT_OP_EQ ? "" : "!= ", (uint32_t)info->mark);
	}

	return 1;
}
static struct xtables_match brmark_m_match = {
	.name		= "mark_m",
	.revision	= 0,
	.version	= XTABLES_VERSION,
	.family		= NFPROTO_BRIDGE,
	.size		= XT_ALIGN(sizeof(struct ebt_mark_m_info)),
	.userspacesize	= XT_ALIGN(sizeof(struct ebt_mark_m_info)),
	.help		= brmark_m_print_help,
	.x6_parse	= brmark_m_parse,
	.print		= brmark_m_print,
	.xlate		= brmark_m_xlate,
	.x6_options	= brmark_m_opts,
};

void _init(void)
{
	xtables_register_match(&brmark_m_match);
}