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
119
120
121
122
|
/*
Shared library add-on to iptables to add layer 7 matching support.
http://l7-filter.sf.net
By Matthew Strait <quadong@users.sf.net>, Dec 2003.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
2 of the License, or (at your option) any later version.
http://www.gnu.org/licenses/gpl.txt
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <netdb.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>
#include <ctype.h>
#include <dirent.h>
#include <iptables.h>
#include <linux/netfilter_ipv4/ipt_childlevel.h>
/* Function which prints out usage message. */
static void help(void)
{
printf(
"CHILDLEVEL match v%s options:\n"
"--level <n> : Match childlevel n (0 == master)\n",
IPTABLES_VERSION);
fputc('\n', stdout);
}
static struct option opts[] = {
{ .name = "level", .has_arg = 1, .flag = 0, .val = '1' },
{ .name = 0 }
};
/* Initialize the match. */
static void init(struct ipt_entry_match *m, unsigned int *nfcache)
{
*nfcache |= NFC_UNKNOWN;
}
/* Function which parses command options; returns true if it ate an option */
static int parse(int c, char **argv, int invert, unsigned int *flags,
const struct ipt_entry *entry, unsigned int *nfcache,
struct ipt_entry_match **match)
{
struct ipt_childlevel_info *childlevelinfo =
(struct ipt_childlevel_info *)(*match)->data;
switch (c) {
case '1':
check_inverse(optarg, &invert, &optind, 0);
childlevelinfo->childlevel = atoi(argv[optind-1]);
if (invert)
childlevelinfo->invert = 1;
*flags = 1;
break;
default:
return 0;
}
return 1;
}
/* Final check; must have specified --level. */
static void final_check(unsigned int flags)
{
if (!flags)
exit_error(PARAMETER_PROBLEM,
"CHILDLEVEL match: You must specify `--level'");
}
static void print_protocol(int n, int invert, int numeric)
{
fputs("childlevel ", stdout);
if (invert) fputc('!', stdout);
printf("%d ", n);
}
/* Prints out the matchinfo. */
static void print(const struct ipt_ip *ip,
const struct ipt_entry_match *match,
int numeric)
{
printf("CHILDLEVEL ");
print_protocol(((struct ipt_childlevel_info *)match->data)->childlevel,
((struct ipt_childlevel_info *)match->data)->invert, numeric);
}
/* Saves the union ipt_matchinfo in parsable form to stdout. */
static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
{
const struct ipt_childlevel_info *info =
(const struct ipt_childlevel_info*) match->data;
printf("--childlevel %s%d ", (info->invert) ? "! ": "", info->childlevel);
}
static struct iptables_match childlevel = {
.name = "childlevel",
.version = IPTABLES_VERSION,
.size = IPT_ALIGN(sizeof(struct ipt_childlevel_info)),
.userspacesize = IPT_ALIGN(sizeof(struct ipt_childlevel_info)),
.help = &help,
.init = &init,
.parse = &parse,
.final_check = &final_check,
.print = &print,
.save = &save,
.extra_opts = opts
};
void _init(void)
{
register_match(&childlevel);
}
|