summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_cpu.c
blob: ee0299605f1705e292d912d6f2200a6d5c167f78 (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
/* Shared library add-on to iptables to add CPU match support. */
#include <stdbool.h>
#include <stdio.h>
#include <netdb.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>
#include <xtables.h>
#include <linux/netfilter/xt_cpu.h>

static void cpu_help(void)
{
	printf(
"cpu match options:\n"
"[!] --cpu number   Match CPU number\n");
}

static const struct option cpu_opts[] = {
	{.name = "cpu", .has_arg = true, .val = '1'},
	XT_GETOPT_TABLEEND,
};

static void
parse_cpu(const char *s, struct xt_cpu_info *info)
{
	unsigned int cpu;
	char *end;

	if (!xtables_strtoui(s, &end, &cpu, 0, UINT32_MAX))
		xtables_param_act(XTF_BAD_VALUE, "cpu", "--cpu", s);

	if (*end != '\0')
		xtables_param_act(XTF_BAD_VALUE, "cpu", "--cpu", s);

	info->cpu = cpu;
}

static int
cpu_parse(int c, char **argv, int invert, unsigned int *flags,
          const void *entry, struct xt_entry_match **match)
{
	struct xt_cpu_info *cpuinfo = (struct xt_cpu_info *)(*match)->data;

	switch (c) {
	case '1':
		xtables_check_inverse(optarg, &invert, &optind, 0, argv);
		parse_cpu(optarg, cpuinfo);
		if (invert)
			cpuinfo->invert = 1;
		*flags = 1;
		break;

	default:
		return 0;
	}

	return 1;
}

static void cpu_check(unsigned int flags)
{
	if (!flags)
		xtables_error(PARAMETER_PROBLEM,
			      "You must specify `--cpu'");
}

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

	printf("cpu %s%u ", info->invert ? "! ":"", info->cpu);
}

static void cpu_save(const void *ip, const struct xt_entry_match *match)
{
	const struct xt_cpu_info *info = (void *)match->data;

	printf("%s--cpu %u ", info->invert ? "! ":"", info->cpu);
}

static struct xtables_match cpu_match = {
	.family		= NFPROTO_UNSPEC,
 	.name		= "cpu",
	.version	= XTABLES_VERSION,
	.size		= XT_ALIGN(sizeof(struct xt_cpu_info)),
	.userspacesize	= XT_ALIGN(sizeof(struct xt_cpu_info)),
	.help		= cpu_help,
	.parse		= cpu_parse,
	.final_check	= cpu_check,
	.print		= cpu_print,
	.save		= cpu_save,
	.extra_opts	= cpu_opts,
};

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