Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / iptables / extensions / libip6t_random.c
blobd34a230819154d4f410d4707a39e24d34f923efa
1 /*
2 Shared library add-on to iptables to add match support for random match.
4 This file is distributed under the terms of the GNU General Public
5 License (GPL). Copies of the GPL can be obtained from:
6 ftp://prep.ai.mit.edu/pub/gnu/GPL
8 2001-10-14 Fabrice MARIE <fabrice@netfilter.org> : initial development.
9 2003-04-30 Maciej Soltysiak <solt@dns.toxicfilms.tv> : IPv6 port.
12 #include <stdio.h>
13 #include <netdb.h>
14 #include <string.h>
15 #include <stdlib.h>
16 #include <syslog.h>
17 #include <getopt.h>
18 #include <ip6tables.h>
19 #include <linux/netfilter_ipv6/ip6_tables.h>
20 #include <linux/netfilter_ipv6/ip6t_random.h>
22 /**
23 * The kernel random routing returns numbers between 0 and 255.
24 * To ease the task of the user in choosing the probability
25 * of matching, we want him to be able to use percentages.
26 * Therefore we have to accept numbers in percentage here,
27 * turn them into number between 0 and 255 for the kernel module,
28 * and turn them back to percentages when we print/save
29 * the rule.
33 /* Function which prints out usage message. */
34 static void
35 help(void)
37 printf(
38 "random v%s options:\n"
39 " [--average] percent The probability in percentage of the match\n"
40 " If ommited, a probability of 50%% percent is set.\n"
41 " Percentage must be within : 1 <= percent <= 99.\n\n",
42 IPTABLES_VERSION);
45 static struct option opts[] = {
46 { "average", 1, 0, '1' },
47 { 0 }
50 /* Initialize the target. */
51 static void
52 init(struct ip6t_entry_match *m, unsigned int *nfcache)
54 struct ip6t_rand_info *randinfo = (struct ip6t_rand_info *)(m)->data;
56 /* We assign the average to be 50 which is our default value */
57 /* 50 * 2.55 = 128 */
58 randinfo->average = 128;
61 #define IP6T_RAND_OPT_AVERAGE 0x01
63 /* Function which parses command options; returns true if it
64 ate an option */
65 static int
66 parse(int c, char **argv, int invert, unsigned int *flags,
67 const struct ip6t_entry *entry,
68 unsigned int *nfcache,
69 struct ip6t_entry_match **match)
71 struct ip6t_rand_info *randinfo = (struct ip6t_rand_info *)(*match)->data;
72 unsigned int num;
74 switch (c) {
75 case '1':
76 /* check for common mistakes... */
77 if (invert)
78 exit_error(PARAMETER_PROBLEM,
79 "Can't specify ! --average");
80 if (*flags & IP6T_RAND_OPT_AVERAGE)
81 exit_error(PARAMETER_PROBLEM,
82 "Can't specify --average twice");
84 /* Remember, this function will interpret a leading 0 to be
85 Octal, a leading 0x to be hexdecimal... */
86 if (string_to_number(optarg, 1, 99, &num) == -1 || num < 1)
87 exit_error(PARAMETER_PROBLEM,
88 "bad --average `%s', must be between 1 and 99", optarg);
90 /* assign the values */
91 randinfo->average = (int)(num * 2.55);
92 *flags |= IP6T_RAND_OPT_AVERAGE;
93 break;
94 default:
95 return 0;
97 return 1;
100 /* Final check; nothing. */
101 static void final_check(unsigned int flags)
105 /* Prints out the targinfo. */
106 static void
107 print(const struct ip6t_ip6 *ip,
108 const struct ip6t_entry_match *match,
109 int numeric)
111 const struct ip6t_rand_info *randinfo
112 = (const struct ip6t_rand_info *)match->data;
113 div_t result = div((randinfo->average*100), 255);
114 if (result.rem > 127) /* round up... */
115 ++result.quot;
117 printf(" random %u%% ", result.quot);
120 /* Saves the union ip6t_targinfo in parsable form to stdout. */
121 static void
122 save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
124 const struct ip6t_rand_info *randinfo
125 = (const struct ip6t_rand_info *)match->data;
126 div_t result = div((randinfo->average *100), 255);
127 if (result.rem > 127) /* round up... */
128 ++result.quot;
130 printf("--average %u ", result.quot);
133 struct ip6tables_match rand_match = {
134 .name = "random",
135 .version = IPTABLES_VERSION,
136 .size = IP6T_ALIGN(sizeof(struct ip6t_rand_info)),
137 .userspacesize = IP6T_ALIGN(sizeof(struct ip6t_rand_info)),
138 .help = &help,
139 .init = &init,
140 .parse = &parse,
141 .final_check = &final_check,
142 .print = &print,
143 .save = &save,
144 .extra_opts = opts,
147 void _init(void)
149 register_match6(&rand_match);