blob: 6aed4990cc0dfaf45df211e5c191b20789e1d37b [file] [log] [blame]
Harald Welte487d1d32002-03-14 12:22:06 +00001/* Shared library add-on to iptables for DSCP
2 *
3 * (C) 2002 by Harald Welte <laforge@gnumonks.org>
4 *
5 * This program is distributed under the terms of GNU GPL v2, 1991
6 *
7 * libipt_dscp.c borrowed heavily from libipt_tos.c
8 *
Iain Barnes0ddae8f2002-06-21 17:35:55 +00009 * --class support added by Iain Barnes
10 *
Harald Welte487d1d32002-03-14 12:22:06 +000011 * For a list of DSCP codepoints see
12 * http://www.iana.org/assignments/dscp-registry
13 *
14 */
15#include <stdio.h>
16#include <string.h>
17#include <stdlib.h>
18#include <getopt.h>
19
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +000020#include <xtables.h>
21#include <linux/netfilter/x_tables.h>
22#include <linux/netfilter/xt_dscp.h>
Harald Welte487d1d32002-03-14 12:22:06 +000023
Iain Barnes0ddae8f2002-06-21 17:35:55 +000024/* This is evil, but it's my code - HW*/
Jan Engelhardtf82070f2008-01-20 13:14:00 +000025#include "dscp_helper.c"
Iain Barnes0ddae8f2002-06-21 17:35:55 +000026
Jan Engelhardt181dead2007-10-04 16:27:07 +000027static void dscp_help(void)
Harald Welte487d1d32002-03-14 12:22:06 +000028{
29 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020030"dscp match options\n"
Harald Welte487d1d32002-03-14 12:22:06 +000031"[!] --dscp value Match DSCP codepoint with numerical value\n"
32" This value can be in decimal (ex: 32)\n"
Iain Barnes0ddae8f2002-06-21 17:35:55 +000033" or in hex (ex: 0x20)\n"
Harald Weltea49ded02002-08-07 09:55:37 +000034"[!] --dscp-class name Match the DiffServ class. This value may\n"
Iain Barnes0ddae8f2002-06-21 17:35:55 +000035" be any of the BE,EF, AFxx or CSx classes\n"
36"\n"
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020037" These two options are mutually exclusive !\n");
Harald Welte487d1d32002-03-14 12:22:06 +000038}
39
Jan Engelhardt181dead2007-10-04 16:27:07 +000040static const struct option dscp_opts[] = {
Patrick McHardy500f4832007-09-08 15:59:04 +000041 { "dscp", 1, NULL, 'F' },
42 { "dscp-class", 1, NULL, 'G' },
Max Kellermann9ee386a2008-01-29 13:48:05 +000043 { .name = NULL }
Harald Welte487d1d32002-03-14 12:22:06 +000044};
45
46static void
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +000047parse_dscp(const char *s, struct xt_dscp_info *dinfo)
Harald Welte487d1d32002-03-14 12:22:06 +000048{
49 unsigned int dscp;
50
51 if (string_to_number(s, 0, 255, &dscp) == -1)
52 exit_error(PARAMETER_PROBLEM,
53 "Invalid dscp `%s'\n", s);
54
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +000055 if (dscp > XT_DSCP_MAX)
Harald Welte487d1d32002-03-14 12:22:06 +000056 exit_error(PARAMETER_PROBLEM,
57 "DSCP `%d` out of range\n", dscp);
58
59 dinfo->dscp = (u_int8_t )dscp;
60 return;
61}
62
Iain Barnes0ddae8f2002-06-21 17:35:55 +000063
64static void
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +000065parse_class(const char *s, struct xt_dscp_info *dinfo)
Iain Barnes0ddae8f2002-06-21 17:35:55 +000066{
67 unsigned int dscp = class_to_dscp(s);
68
69 /* Assign the value */
70 dinfo->dscp = (u_int8_t)dscp;
71}
72
73
Harald Welte487d1d32002-03-14 12:22:06 +000074static int
Jan Engelhardt181dead2007-10-04 16:27:07 +000075dscp_parse(int c, char **argv, int invert, unsigned int *flags,
76 const void *entry, struct xt_entry_match **match)
Harald Welte487d1d32002-03-14 12:22:06 +000077{
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +000078 struct xt_dscp_info *dinfo
79 = (struct xt_dscp_info *)(*match)->data;
Harald Welte487d1d32002-03-14 12:22:06 +000080
81 switch (c) {
82 case 'F':
83 if (*flags)
84 exit_error(PARAMETER_PROBLEM,
85 "DSCP match: Only use --dscp ONCE!");
86 check_inverse(optarg, &invert, &optind, 0);
87 parse_dscp(argv[optind-1], dinfo);
88 if (invert)
89 dinfo->invert = 1;
90 *flags = 1;
91 break;
92
Iain Barnes0ddae8f2002-06-21 17:35:55 +000093 case 'G':
94 if (*flags)
95 exit_error(PARAMETER_PROBLEM,
Harald Weltea49ded02002-08-07 09:55:37 +000096 "DSCP match: Only use --dscp-class ONCE!");
Iain Barnes0ddae8f2002-06-21 17:35:55 +000097 check_inverse(optarg, &invert, &optind, 0);
98 parse_class(argv[optind - 1], dinfo);
99 if (invert)
100 dinfo->invert = 1;
101 *flags = 1;
102 break;
103
Harald Welte487d1d32002-03-14 12:22:06 +0000104 default:
105 return 0;
106 }
107
108 return 1;
109}
110
Jan Engelhardt181dead2007-10-04 16:27:07 +0000111static void dscp_check(unsigned int flags)
Harald Welte487d1d32002-03-14 12:22:06 +0000112{
113 if (!flags)
114 exit_error(PARAMETER_PROBLEM,
115 "DSCP match: Parameter --dscp is required");
116}
117
118static void
119print_dscp(u_int8_t dscp, int invert, int numeric)
120{
121 if (invert)
122 fputc('!', stdout);
123
124 printf("0x%02x ", dscp);
125}
126
127/* Prints out the matchinfo. */
128static void
Jan Engelhardt181dead2007-10-04 16:27:07 +0000129dscp_print(const void *ip, const struct xt_entry_match *match, int numeric)
Harald Welte487d1d32002-03-14 12:22:06 +0000130{
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000131 const struct xt_dscp_info *dinfo =
132 (const struct xt_dscp_info *)match->data;
Harald Welte487d1d32002-03-14 12:22:06 +0000133 printf("DSCP match ");
134 print_dscp(dinfo->dscp, dinfo->invert, numeric);
135}
136
137/* Saves the union ipt_matchinfo in parsable form to stdout. */
Jan Engelhardt181dead2007-10-04 16:27:07 +0000138static void dscp_save(const void *ip, const struct xt_entry_match *match)
Harald Welte487d1d32002-03-14 12:22:06 +0000139{
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000140 const struct xt_dscp_info *dinfo =
141 (const struct xt_dscp_info *)match->data;
Harald Welte487d1d32002-03-14 12:22:06 +0000142
143 printf("--dscp ");
144 print_dscp(dinfo->dscp, dinfo->invert, 1);
145}
146
Jan Engelhardt181dead2007-10-04 16:27:07 +0000147static struct xtables_match dscp_match = {
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000148 .family = AF_INET,
Pablo Neira8caee8b2004-12-28 13:11:59 +0000149 .name = "dscp",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200150 .version = XTABLES_VERSION,
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000151 .size = XT_ALIGN(sizeof(struct xt_dscp_info)),
152 .userspacesize = XT_ALIGN(sizeof(struct xt_dscp_info)),
Jan Engelhardt181dead2007-10-04 16:27:07 +0000153 .help = dscp_help,
154 .parse = dscp_parse,
155 .final_check = dscp_check,
156 .print = dscp_print,
157 .save = dscp_save,
158 .extra_opts = dscp_opts,
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000159};
160
Jan Engelhardt181dead2007-10-04 16:27:07 +0000161static struct xtables_match dscp_match6 = {
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000162 .family = AF_INET6,
163 .name = "dscp",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200164 .version = XTABLES_VERSION,
Yasuyuki KOZAKAI18e06082007-07-24 07:17:23 +0000165 .size = XT_ALIGN(sizeof(struct xt_dscp_info)),
166 .userspacesize = XT_ALIGN(sizeof(struct xt_dscp_info)),
Jan Engelhardt181dead2007-10-04 16:27:07 +0000167 .help = dscp_help,
168 .parse = dscp_parse,
169 .final_check = dscp_check,
170 .print = dscp_print,
171 .save = dscp_save,
172 .extra_opts = dscp_opts,
Harald Welte487d1d32002-03-14 12:22:06 +0000173};
174
175void _init(void)
176{
Jan Engelhardt181dead2007-10-04 16:27:07 +0000177 xtables_register_match(&dscp_match);
178 xtables_register_match(&dscp_match6);
Harald Welte487d1d32002-03-14 12:22:06 +0000179}