blob: 8890ff7fad0f2c9ce71a623fb2c12c36d66ab0ef [file] [log] [blame]
Rusty Russell52451822000-08-27 07:47:46 +00001/* Shared library add-on to iptables to add ESP support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <getopt.h>
7#include <errno.h>
8#include <iptables.h>
9#include <linux/netfilter_ipv4/ipt_esp.h>
10
11/* Function which prints out usage message. */
12static void
13help(void)
14{
15 printf(
16"ESP v%s options:\n"
17" --espspi [!] spi[:spi]\n"
18" match spi (range)\n",
19NETFILTER_VERSION);
20}
21
22static struct option opts[] = {
23 { "espspi", 1, 0, '1' },
24 {0}
25};
26
27static u_int32_t
28parse_esp_spi(const char *spistr)
29{
30 unsigned long int spi;
31 char* ep;
32
33 spi = strtoul(spistr,&ep,0) ;
34
35 if ( spistr == ep ) {
36 exit_error(PARAMETER_PROBLEM,
37 "ESP no valid digits in spi `%s'", spistr);
38 }
39 if ( spi == ULONG_MAX && errno == ERANGE ) {
40 exit_error(PARAMETER_PROBLEM,
41 "spi `%s' specified too big: would overflow", spistr);
42 }
43 if ( *spistr != '\0' && *ep != '\0' ) {
44 exit_error(PARAMETER_PROBLEM,
45 "ESP error parsing spi `%s'", spistr);
46 }
47 return (u_int32_t) spi;
48}
49
50static void
51parse_esp_spis(const char *spistring, u_int32_t *spis)
52{
53 char *buffer;
54 char *cp;
55
56 buffer = strdup(spistring);
57 if ((cp = strchr(buffer, ':')) == NULL)
58 spis[0] = spis[1] = parse_esp_spi(buffer);
59 else {
60 *cp = '\0';
61 cp++;
62
63 spis[0] = buffer[0] ? parse_esp_spi(buffer) : 0;
64 spis[1] = cp[0] ? parse_esp_spi(cp) : 0xFFFFFFFF;
65 }
66 free(buffer);
67}
68
69/* Initialize the match. */
70static void
71init(struct ipt_entry_match *m, unsigned int *nfcache)
72{
73 struct ipt_esp *espinfo = (struct ipt_esp *)m->data;
74
75 espinfo->spis[1] = 0xFFFFFFFF;
76}
77
78#define ESP_SPI 0x01
79
80/* Function which parses command options; returns true if it
81 ate an option */
82static int
83parse(int c, char **argv, int invert, unsigned int *flags,
84 const struct ipt_entry *entry,
85 unsigned int *nfcache,
86 struct ipt_entry_match **match)
87{
88 struct ipt_esp *espinfo = (struct ipt_esp *)(*match)->data;
89
90 switch (c) {
91 case '1':
92 if (*flags & ESP_SPI)
93 exit_error(PARAMETER_PROBLEM,
94 "Only one `--spi' allowed");
Harald Welteb77f1da2002-03-14 11:35:58 +000095 check_inverse(optarg, &invert, &optind, 0);
Rusty Russell52451822000-08-27 07:47:46 +000096 parse_esp_spis(argv[optind-1], espinfo->spis);
97 if (invert)
98 espinfo->invflags |= IPT_ESP_INV_SPI;
99 *flags |= ESP_SPI;
100 break;
101 default:
102 return 0;
103 }
104
105 return 1;
106}
107
108/* Final check; we don't care. */
109static void
110final_check(unsigned int flags)
111{
112}
113
114static void
115print_spis(const char *name, u_int32_t min, u_int32_t max,
116 int invert)
117{
118 const char *inv = invert ? "!" : "";
119
120 if (min != 0 || max != 0xFFFFFFFF || invert) {
121 printf("%s", name);
122 if (min == max) {
123 printf(":%s", inv);
124 printf("%u", min);
125 } else {
126 printf("s:%s", inv);
127 printf("%u",min);
128 printf(":");
129 printf("%u",max);
130 }
131 printf(" ");
132 }
133}
134
135/* Prints out the union ipt_matchinfo. */
136static void
137print(const struct ipt_ip *ip,
138 const struct ipt_entry_match *match, int numeric)
139{
140 const struct ipt_esp *esp = (struct ipt_esp *)match->data;
141
142 printf("esp ");
143 print_spis("spi", esp->spis[0], esp->spis[1],
144 esp->invflags & IPT_ESP_INV_SPI);
145 if (esp->invflags & ~IPT_ESP_INV_MASK)
146 printf("Unknown invflags: 0x%X ",
147 esp->invflags & ~IPT_ESP_INV_MASK);
148}
149
150/* Saves the union ipt_matchinfo in parsable form to stdout. */
151static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
152{
153 const struct ipt_esp *espinfo = (struct ipt_esp *)match->data;
154
155 if (espinfo->spis[0] != 0
156 && espinfo->spis[1] != 0xFFFFFFFF) {
157 if (espinfo->invflags & IPT_ESP_INV_SPI)
158 printf("! ");
159 if (espinfo->spis[0]
160 != espinfo->spis[1])
161 printf("--spi %u-%u ",
162 espinfo->spis[0],
163 espinfo->spis[1]);
164 else
165 printf("--spi %u ",
166 espinfo->spis[0]);
167 }
168
169}
170
Harald Welte3efb6ea2001-08-06 18:50:21 +0000171static
Rusty Russell52451822000-08-27 07:47:46 +0000172struct iptables_match esp
173= { NULL,
174 "esp",
175 NETFILTER_VERSION,
176 IPT_ALIGN(sizeof(struct ipt_esp)),
177 IPT_ALIGN(sizeof(struct ipt_esp)),
178 &help,
179 &init,
180 &parse,
181 &final_check,
182 &print,
183 &save,
184 opts
185};
186
187void
188_init(void)
189{
190 register_match(&esp);
191}