blob: 03ce1bdbc482e3450c0df0f7607bd5e030a4bd53 [file] [log] [blame]
Marc Boucher53adeb12000-08-27 11:24:00 +00001/* Shared library add-on to iptables to add TCPMSS target support.
2 *
3 * Copyright (c) 2000 Marc Boucher
4*/
5#include <stdio.h>
6#include <string.h>
7#include <stdlib.h>
8#include <getopt.h>
9
10#include <iptables.h>
11#include <linux/netfilter_ipv4/ip_tables.h>
12#include <linux/netfilter_ipv4/ipt_TCPMSS.h>
13
14struct mssinfo {
15 struct ipt_entry_target t;
16 struct ipt_tcpmss_info mss;
17};
18
19/* Function which prints out usage message. */
20static void
21help(void)
22{
23 printf(
Marc Boucher711fcbe2000-09-12 02:56:54 +000024"TCPMSS target v%s mutually-exclusive options:\n"
25" --set-mss value explicitly set MSS option to specified value\n"
26" --clamp-mss-to-pmtu automatically clamp MSS value to (path_MTU - 40)\n",
Marc Boucher53adeb12000-08-27 11:24:00 +000027NETFILTER_VERSION);
28}
29
30static struct option opts[] = {
31 { "set-mss", 1, 0, '1' },
Marc Boucher711fcbe2000-09-12 02:56:54 +000032 { "clamp-mss-to-pmtu", 0, 0, '2' },
Marc Boucher53adeb12000-08-27 11:24:00 +000033 { 0 }
34};
35
36/* Initialize the target. */
37static void
38init(struct ipt_entry_target *t, unsigned int *nfcache)
39{
40}
41
42/* Function which parses command options; returns true if it
43 ate an option */
44static int
45parse(int c, char **argv, int invert, unsigned int *flags,
46 const struct ipt_entry *entry,
47 struct ipt_entry_target **target)
48{
49 struct ipt_tcpmss_info *mssinfo
50 = (struct ipt_tcpmss_info *)(*target)->data;
51
52 switch (c) {
53 int mssval;
54
55 case '1':
56 if (*flags)
57 exit_error(PARAMETER_PROBLEM,
Marc Boucher711fcbe2000-09-12 02:56:54 +000058 "TCPMSS target: Only one option may be specified");
59 if ((mssval = string_to_number(optarg, 0, 65535 - 40)) == -1)
Marc Boucher53adeb12000-08-27 11:24:00 +000060 exit_error(PARAMETER_PROBLEM, "Bad TCPMSS value `%s'", optarg);
61
62 mssinfo->mss = mssval;
63 *flags = 1;
64 break;
65
Marc Boucher711fcbe2000-09-12 02:56:54 +000066 case '2':
67 if (*flags)
68 exit_error(PARAMETER_PROBLEM,
69 "TCPMSS target: Only one option may be specified");
70 mssinfo->mss = IPT_TCPMSS_CLAMP_PMTU;
71 *flags = 1;
72 break;
73
Marc Boucher53adeb12000-08-27 11:24:00 +000074 default:
75 return 0;
76 }
77
78 return 1;
79}
80
81static void
82final_check(unsigned int flags)
83{
84 if (!flags)
85 exit_error(PARAMETER_PROBLEM,
Marc Boucher711fcbe2000-09-12 02:56:54 +000086 "TCPMSS target: At least one parameter is required");
Marc Boucher53adeb12000-08-27 11:24:00 +000087}
88
89/* Prints out the targinfo. */
90static void
91print(const struct ipt_ip *ip,
92 const struct ipt_entry_target *target,
93 int numeric)
94{
95 const struct ipt_tcpmss_info *mssinfo =
96 (const struct ipt_tcpmss_info *)target->data;
Marc Boucher711fcbe2000-09-12 02:56:54 +000097 if(mssinfo->mss == IPT_TCPMSS_CLAMP_PMTU)
98 printf("TCPMSS clamp to PMTU ");
99 else
100 printf("TCPMSS set %u ", mssinfo->mss);
Marc Boucher53adeb12000-08-27 11:24:00 +0000101}
102
103/* Saves the union ipt_targinfo in parsable form to stdout. */
104static void
105save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
106{
107 const struct ipt_tcpmss_info *mssinfo =
108 (const struct ipt_tcpmss_info *)target->data;
109
Marc Boucher711fcbe2000-09-12 02:56:54 +0000110 if(mssinfo->mss == IPT_TCPMSS_CLAMP_PMTU)
111 printf("--clamp-mss-to-pmtu ");
112 else
113 printf("--set-mss %u ", mssinfo->mss);
Marc Boucher53adeb12000-08-27 11:24:00 +0000114}
115
116struct iptables_target mss
117= { NULL,
118 "TCPMSS",
119 NETFILTER_VERSION,
120 IPT_ALIGN(sizeof(struct ipt_tcpmss_info)),
121 IPT_ALIGN(sizeof(struct ipt_tcpmss_info)),
122 &help,
123 &init,
124 &parse,
125 &final_check,
126 &print,
127 &save,
128 opts
129};
130
131void _init(void)
132{
133 register_target(&mss);
134}