blob: 5b6453e8ee68d9f84d9936bcea186be67aae23c4 [file] [log] [blame]
Fabrice MARIE147a2be2001-05-02 15:45:57 +00001/* Shared library add-on to iptables to add packet length matching support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +00008#include <xtables.h>
9#include <linux/netfilter/xt_length.h>
Fabrice MARIE147a2be2001-05-02 15:45:57 +000010
11/* Function which prints out usage message. */
12static void
13help(void)
14{
15 printf(
16"length v%s options:\n"
17"[!] --length length[:length] Match packet length against value or range\n"
18" of values (inclusive)\n",
Harald Welte80fe35d2002-05-29 13:08:15 +000019IPTABLES_VERSION);
Fabrice MARIE147a2be2001-05-02 15:45:57 +000020
21}
22
23static struct option opts[] = {
24 { "length", 1, 0, '1' },
25 {0}
26};
27
Fabrice MARIE147a2be2001-05-02 15:45:57 +000028static u_int16_t
29parse_length(const char *s)
30{
Harald Welteb4719762001-07-23 02:14:22 +000031 unsigned int len;
Fabrice MARIE147a2be2001-05-02 15:45:57 +000032
Harald Welteb4719762001-07-23 02:14:22 +000033 if (string_to_number(s, 0, 0xFFFF, &len) == -1)
Fabrice MARIE147a2be2001-05-02 15:45:57 +000034 exit_error(PARAMETER_PROBLEM, "length invalid: `%s'\n", s);
35 else
36 return (u_int16_t )len;
37}
38
39/* If a single value is provided, min and max are both set to the value */
40static void
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +000041parse_lengths(const char *s, struct xt_length_info *info)
Fabrice MARIE147a2be2001-05-02 15:45:57 +000042{
43 char *buffer;
44 char *cp;
45
46 buffer = strdup(s);
47 if ((cp = strchr(buffer, ':')) == NULL)
48 info->min = info->max = parse_length(buffer);
49 else {
50 *cp = '\0';
51 cp++;
52
53 info->min = buffer[0] ? parse_length(buffer) : 0;
54 info->max = cp[0] ? parse_length(cp) : 0xFFFF;
55 }
56 free(buffer);
57
58 if (info->min > info->max)
59 exit_error(PARAMETER_PROBLEM,
60 "length min. range value `%u' greater than max. "
61 "range value `%u'", info->min, info->max);
62
63}
64
65/* Function which parses command options; returns true if it
66 ate an option */
67static int
68parse(int c, char **argv, int invert, unsigned int *flags,
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +000069 const void *entry,
Fabrice MARIE147a2be2001-05-02 15:45:57 +000070 unsigned int *nfcache,
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +000071 struct xt_entry_match **match)
Fabrice MARIE147a2be2001-05-02 15:45:57 +000072{
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +000073 struct xt_length_info *info = (struct xt_length_info *)(*match)->data;
Fabrice MARIE147a2be2001-05-02 15:45:57 +000074
75 switch (c) {
76 case '1':
77 if (*flags)
78 exit_error(PARAMETER_PROBLEM,
79 "length: `--length' may only be "
80 "specified once");
Harald Welteb77f1da2002-03-14 11:35:58 +000081 check_inverse(optarg, &invert, &optind, 0);
Fabrice MARIE147a2be2001-05-02 15:45:57 +000082 parse_lengths(argv[optind-1], info);
83 if (invert)
84 info->invert = 1;
85 *flags = 1;
86 break;
87
88 default:
89 return 0;
90 }
91 return 1;
92}
93
94/* Final check; must have specified --length. */
95static void
96final_check(unsigned int flags)
97{
98 if (!flags)
99 exit_error(PARAMETER_PROBLEM,
100 "length: You must specify `--length'");
101}
102
103/* Common match printing code. */
104static void
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000105print_length(struct xt_length_info *info)
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000106{
107 if (info->invert)
Gerry Skerbitzc8c0f402002-12-05 20:37:22 +0000108 printf("! ");
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000109
110 if (info->max == info->min)
111 printf("%u ", info->min);
112 else
113 printf("%u:%u ", info->min, info->max);
114}
115
116/* Prints out the matchinfo. */
117static void
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +0000118print(const void *ip,
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +0000119 const struct xt_entry_match *match,
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000120 int numeric)
121{
122 printf("length ");
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000123 print_length((struct xt_length_info *)match->data);
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000124}
125
126/* Saves the union ipt_matchinfo in parsable form to stdout. */
127static void
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +0000128save(const void *ip, const struct xt_entry_match *match)
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000129{
130 printf("--length ");
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000131 print_length((struct xt_length_info *)match->data);
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000132}
133
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000134static struct xtables_match length = {
Pablo Neira8caee8b2004-12-28 13:11:59 +0000135 .next = NULL,
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000136 .family = AF_INET,
Pablo Neira8caee8b2004-12-28 13:11:59 +0000137 .name = "length",
138 .version = IPTABLES_VERSION,
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000139 .size = XT_ALIGN(sizeof(struct xt_length_info)),
140 .userspacesize = XT_ALIGN(sizeof(struct xt_length_info)),
141 .help = &help,
142 .parse = &parse,
143 .final_check = &final_check,
144 .print = &print,
145 .save = &save,
146 .extra_opts = opts
147};
148
149static struct xtables_match length6 = {
150 .next = NULL,
151 .family = AF_INET6,
152 .name = "length",
153 .version = IPTABLES_VERSION,
154 .size = XT_ALIGN(sizeof(struct xt_length_info)),
155 .userspacesize = XT_ALIGN(sizeof(struct xt_length_info)),
Pablo Neira8caee8b2004-12-28 13:11:59 +0000156 .help = &help,
Pablo Neira8caee8b2004-12-28 13:11:59 +0000157 .parse = &parse,
158 .final_check = &final_check,
159 .print = &print,
160 .save = &save,
161 .extra_opts = opts
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000162};
163
164void _init(void)
165{
Yasuyuki KOZAKAI36087d92007-07-24 07:15:03 +0000166 xtables_register_match(&length);
167 xtables_register_match(&length6);
Fabrice MARIE147a2be2001-05-02 15:45:57 +0000168}