blob: 98a433312a8b8568e0442319444edf6a089039c2 [file] [log] [blame]
Harald Welte2e7377d2002-02-17 19:54:42 +00001/* Shared library add-on to iptables for DSCP
2 *
3 * (C) 2000- 2002 by Matthew G. Marsh <mgm@paktronix.com>,
4 * Harald Welte <laforge@gnumonks.org>
5 *
6 * This program is distributed under the terms of GNU GPL v2, 1991
7 *
8 * libipt_DSCP.c borrowed heavily from libipt_TOS.c
9 *
Iain Barnesdf5e13f2002-04-11 10:48:53 +000010 * --set-class added by Iain Barnes
Harald Welte2e7377d2002-02-17 19:54:42 +000011 */
12#include <stdio.h>
13#include <string.h>
14#include <stdlib.h>
15#include <getopt.h>
16
17#include <iptables.h>
18#include <linux/netfilter_ipv4/ip_tables.h>
19#include <linux/netfilter_ipv4/ipt_DSCP.h>
20
Iain Barnes0ddae8f2002-06-21 17:35:55 +000021/* This is evil, but it's my code - HW*/
22#include "libipt_dscp_helper.c"
Iain Barnesdf5e13f2002-04-11 10:48:53 +000023
Iain Barnesdf5e13f2002-04-11 10:48:53 +000024
Harald Welte2e7377d2002-02-17 19:54:42 +000025static void init(struct ipt_entry_target *t, unsigned int *nfcache)
26{
27}
28
29static void help(void)
30{
31 printf(
32"DSCP target options\n"
33" --set-dscp value Set DSCP field in packet header to value\n"
34" This value can be in decimal (ex: 32)\n"
35" or in hex (ex: 0x20)\n"
Harald Weltea49ded02002-08-07 09:55:37 +000036" --set-dscp-class class Set the DSCP field in packet header to the\n"
37" value represented by the DiffServ class value.\n"
Maciej Soltysiak920463d2004-03-04 00:14:03 +000038" This class may be EF,BE or any of the CSxx\n"
Iain Barnesdf5e13f2002-04-11 10:48:53 +000039" or AFxx classes.\n"
40"\n"
41" These two options are mutually exclusive !\n"
Harald Welte2e7377d2002-02-17 19:54:42 +000042);
43}
44
45static struct option opts[] = {
46 { "set-dscp", 1, 0, 'F' },
Harald Weltea49ded02002-08-07 09:55:37 +000047 { "set-dscp-class", 1, 0, 'G' },
Harald Welte2e7377d2002-02-17 19:54:42 +000048 { 0 }
49};
50
51static void
Harald Welteed18bad2002-02-17 21:28:51 +000052parse_dscp(const unsigned char *s, struct ipt_DSCP_info *dinfo)
Harald Welte2e7377d2002-02-17 19:54:42 +000053{
54 unsigned int dscp;
55
56 if (string_to_number(s, 0, 255, &dscp) == -1)
57 exit_error(PARAMETER_PROBLEM,
58 "Invalid dscp `%s'\n", s);
59
Harald Welteed18bad2002-02-17 21:28:51 +000060 if (dscp > IPT_DSCP_MAX)
Harald Welte2e7377d2002-02-17 19:54:42 +000061 exit_error(PARAMETER_PROBLEM,
62 "DSCP `%d` out of range\n", dscp);
63
Harald Welteed18bad2002-02-17 21:28:51 +000064 dinfo->dscp = (u_int8_t )dscp;
Harald Welte2e7377d2002-02-17 19:54:42 +000065 return;
66}
67
Iain Barnesdf5e13f2002-04-11 10:48:53 +000068
69static void
70parse_class(const unsigned char *s, struct ipt_DSCP_info *dinfo)
71{
Iain Barnes0ddae8f2002-06-21 17:35:55 +000072 unsigned int dscp = class_to_dscp(s);
Iain Barnesdf5e13f2002-04-11 10:48:53 +000073
Iain Barnes0ddae8f2002-06-21 17:35:55 +000074 /* Assign the value */
75 dinfo->dscp = (u_int8_t)dscp;
Iain Barnesdf5e13f2002-04-11 10:48:53 +000076}
77
78
Harald Welte2e7377d2002-02-17 19:54:42 +000079static int
80parse(int c, char **argv, int invert, unsigned int *flags,
81 const struct ipt_entry *entry,
82 struct ipt_entry_target **target)
83{
Harald Welteed18bad2002-02-17 21:28:51 +000084 struct ipt_DSCP_info *dinfo
Harald Welte2e7377d2002-02-17 19:54:42 +000085 = (struct ipt_DSCP_info *)(*target)->data;
86
87 switch (c) {
88 case 'F':
89 if (*flags)
90 exit_error(PARAMETER_PROBLEM,
91 "DSCP target: Only use --set-dscp ONCE!");
Harald Welteed18bad2002-02-17 21:28:51 +000092 parse_dscp(optarg, dinfo);
Harald Welte2e7377d2002-02-17 19:54:42 +000093 *flags = 1;
94 break;
Iain Barnesdf5e13f2002-04-11 10:48:53 +000095 case 'G':
96 if (*flags)
97 exit_error(PARAMETER_PROBLEM,
Harald Weltea49ded02002-08-07 09:55:37 +000098 "DSCP target: Only use --set-dscp-class ONCE!");
Iain Barnesdf5e13f2002-04-11 10:48:53 +000099 parse_class(optarg, dinfo);
100 *flags = 1;
101 break;
Harald Welte2e7377d2002-02-17 19:54:42 +0000102
103 default:
104 return 0;
105 }
106
107 return 1;
108}
109
110static void
111final_check(unsigned int flags)
112{
113 if (!flags)
114 exit_error(PARAMETER_PROBLEM,
115 "DSCP target: Parameter --set-dscp is required");
116}
117
118static void
Harald Welteed18bad2002-02-17 21:28:51 +0000119print_dscp(u_int8_t dscp, int numeric)
Harald Welte2e7377d2002-02-17 19:54:42 +0000120{
121 printf("0x%02x ", dscp);
122}
123
124/* Prints out the targinfo. */
125static void
126print(const struct ipt_ip *ip,
127 const struct ipt_entry_target *target,
128 int numeric)
129{
Harald Welteed18bad2002-02-17 21:28:51 +0000130 const struct ipt_DSCP_info *dinfo =
Harald Welte2e7377d2002-02-17 19:54:42 +0000131 (const struct ipt_DSCP_info *)target->data;
132 printf("DSCP set ");
Harald Welteed18bad2002-02-17 21:28:51 +0000133 print_dscp(dinfo->dscp, numeric);
Harald Welte2e7377d2002-02-17 19:54:42 +0000134}
135
136/* Saves the union ipt_targinfo in parsable form to stdout. */
137static void
138save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
139{
Harald Welteed18bad2002-02-17 21:28:51 +0000140 const struct ipt_DSCP_info *dinfo =
Harald Welte2e7377d2002-02-17 19:54:42 +0000141 (const struct ipt_DSCP_info *)target->data;
142
Harald Welteed18bad2002-02-17 21:28:51 +0000143 printf("--set-dscp 0x%02x ", dinfo->dscp);
Harald Welte2e7377d2002-02-17 19:54:42 +0000144}
145
146static
147struct iptables_target dscp
148= { NULL,
149 "DSCP",
Harald Welte80fe35d2002-05-29 13:08:15 +0000150 IPTABLES_VERSION,
Harald Welte2e7377d2002-02-17 19:54:42 +0000151 IPT_ALIGN(sizeof(struct ipt_DSCP_info)),
152 IPT_ALIGN(sizeof(struct ipt_DSCP_info)),
153 &help,
154 &init,
155 &parse,
156 &final_check,
157 &print,
158 &save,
159 opts
160};
161
162void _init(void)
163{
164 register_target(&dscp);
165}