summaryrefslogtreecommitdiffstats
path: root/extensions/libebt_802_3.c
blob: 489185e93f1a0ddf354f2d027f6ed09d2cb545d2 (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
/* 802_3
 *
 * Author:
 * Chris Vitale <csv@bluetail.com>
 *
 * May 2003
 *
 * Adapted by Arturo Borrero Gonzalez <arturo@debian.org>
 * to use libxtables for ebtables-compat
 */

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

static const struct xt_option_entry br802_3_opts[] =
{
	{ .name = "802_3-sap", .id = EBT_802_3_SAP,
	  .type = XTTYPE_UINT8, .base = 16,
	  .flags = XTOPT_INVERT | XTOPT_PUT,
	  XTOPT_POINTER(struct ebt_802_3_info, sap) },
	{ .name = "802_3-type", .id = EBT_802_3_TYPE,
	  .type = XTTYPE_UINT16, .base = 16,
	  .flags = XTOPT_INVERT | XTOPT_PUT | XTOPT_NBO,
	  XTOPT_POINTER(struct ebt_802_3_info, type) },
	XTOPT_TABLEEND,
};

static void br802_3_print_help(void)
{
	printf(
"802_3 options:\n"
"[!] --802_3-sap protocol       : 802.3 DSAP/SSAP- 1 byte value (hex)\n"
"  DSAP and SSAP are always the same.  One SAP applies to both fields\n"
"[!] --802_3-type protocol      : 802.3 SNAP Type- 2 byte value (hex)\n"
"  Type implies SAP value 0xaa\n");
}

static void br802_3_parse(struct xt_option_call *cb)
{
	struct ebt_802_3_info *info = cb->data;

	xtables_option_parse(cb);
	info->bitmask |= cb->entry->id;
	if (cb->invert)
		info->invflags |= cb->entry->id;
}

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

	if (info->bitmask & EBT_802_3_SAP) {
		if (info->invflags & EBT_802_3_SAP)
			printf("! ");
		printf("--802_3-sap 0x%.2x ", info->sap);
	}
	if (info->bitmask & EBT_802_3_TYPE) {
		if (info->invflags & EBT_802_3_TYPE)
			printf("! ");
		printf("--802_3-type 0x%.4x ", ntohs(info->type));
	}
}

static struct xtables_match br802_3_match =
{
	.name		= "802_3",
	.revision	= 0,
	.version	= XTABLES_VERSION,
	.family		= NFPROTO_BRIDGE,
	.size		= XT_ALIGN(sizeof(struct ebt_802_3_info)),
	.userspacesize	= XT_ALIGN(sizeof(struct ebt_802_3_info)),
	.help		= br802_3_print_help,
	.x6_parse	= br802_3_parse,
	.print		= br802_3_print,
	.x6_options	= br802_3_opts,
};

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