blob: 7c9f3e3c6400943f56f59b8222a4a69dfae33cfa [file] [log] [blame]
Martin Josefsson110610b2002-01-11 18:41:02 +00001/* Shared library add-on to iptables to add related packet matching support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7
8#include <iptables.h>
9#include <linux/netfilter_ipv4/ipt_helper.h>
10
11/* Function which prints out usage message. */
12static void
13help(void)
14{
15 printf(
16"helper match v%s options:\n"
Hervé Eychenne9230c112003-03-03 22:23:22 +000017"[!] --helper string Match helper identified by string\n"
Martin Josefsson110610b2002-01-11 18:41:02 +000018"\n",
Harald Welte80fe35d2002-05-29 13:08:15 +000019IPTABLES_VERSION);
Martin Josefsson110610b2002-01-11 18:41:02 +000020}
21
22static struct option opts[] = {
23 { "helper", 1, 0, '1' },
24 {0}
25};
26
Martin Josefsson110610b2002-01-11 18:41:02 +000027/* Function which parses command options; returns true if it
28 ate an option */
29static int
30parse(int c, char **argv, int invert, unsigned int *flags,
31 const struct ipt_entry *entry,
32 unsigned int *nfcache,
33 struct ipt_entry_match **match)
34{
35 struct ipt_helper_info *info = (struct ipt_helper_info *)(*match)->data;
36
37 switch (c) {
38 case '1':
Nicolas Bouliane708f7b92005-01-02 23:34:48 +000039 if (*flags)
40 exit_error(PARAMETER_PROBLEM,
41 "helper match: Only use --helper ONCE!");
Harald Welteb77f1da2002-03-14 11:35:58 +000042 check_inverse(optarg, &invert, &invert, 0);
Martin Josefsson110610b2002-01-11 18:41:02 +000043 strncpy(info->name, optarg, 29);
Karsten Desler073df8f2004-01-31 15:33:55 +000044 info->name[29] = '\0';
Martin Josefsson110610b2002-01-11 18:41:02 +000045 if (invert)
46 info->invert = 1;
47 *flags = 1;
48 break;
49
50 default:
51 return 0;
52 }
53 return 1;
54}
55
56/* Final check; must have specified --helper. */
57static void
58final_check(unsigned int flags)
59{
60 if (!flags)
61 exit_error(PARAMETER_PROBLEM,
62 "helper match: You must specify `--helper'");
63}
64
65/* Prints out the info. */
66static void
67print(const struct ipt_ip *ip,
68 const struct ipt_entry_match *match,
69 int numeric)
70{
71 struct ipt_helper_info *info = (struct ipt_helper_info *)match->data;
72
73 printf("helper match %s\"%s\" ", info->invert ? "! " : "", info->name);
74}
75
76/* Saves the union ipt_info in parsable form to stdout. */
77static void
78save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
79{
80 struct ipt_helper_info *info = (struct ipt_helper_info *)match->data;
81
82 printf("%s--helper \"%s\" ",info->invert ? "! " : "", info->name);
83}
84
Pablo Neira8caee8b2004-12-28 13:11:59 +000085static struct iptables_match helper = {
86 .next = NULL,
87 .name = "helper",
88 .version = IPTABLES_VERSION,
Pablo Neira8caee8b2004-12-28 13:11:59 +000089 .size = IPT_ALIGN(sizeof(struct ipt_helper_info)),
90 .help = &help,
Pablo Neira8caee8b2004-12-28 13:11:59 +000091 .parse = &parse,
92 .final_check = &final_check,
93 .print = &print,
94 .save = &save,
95 .extra_opts = opts
Martin Josefsson110610b2002-01-11 18:41:02 +000096};
97
98void _init(void)
99{
100 register_match(&helper);
101}