blob: 16558fe6979e836c0df0323545ae9e68cce12783 [file] [log] [blame]
Stephane Ouelletteed30c6b2003-04-27 13:07:18 +00001/* Shared library add-on to iptables for condition match */
Stephane Ouelletted57b0602002-11-02 15:00:15 +00002#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <getopt.h>
6#include <iptables.h>
7
8#include<linux/netfilter_ipv4/ip_tables.h>
9#include<linux/netfilter_ipv4/ipt_condition.h>
10
11
Stephane Ouellettea2c70372003-02-25 11:54:56 +000012static void
13help(void)
Stephane Ouelletted57b0602002-11-02 15:00:15 +000014{
Stephane Ouellettea2c70372003-02-25 11:54:56 +000015 printf("condition match v%s options:\n"
16 "--condition [!] filename "
17 "Match on boolean value stored in /proc file\n",
18 IPTABLES_VERSION);
Stephane Ouelletted57b0602002-11-02 15:00:15 +000019}
20
21
Stephane Ouellettea2c70372003-02-25 11:54:56 +000022static struct option opts[] = {
23 { .name = "condition", .has_arg = 1, .flag = 0, .val = 'X' },
24 { .name = 0 }
25};
26
Stephane Ouellettea2c70372003-02-25 11:54:56 +000027static int
28parse(int c, char **argv, int invert, unsigned int *flags,
29 const struct ipt_entry *entry, unsigned int *nfcache,
30 struct ipt_entry_match **match)
Stephane Ouelletted57b0602002-11-02 15:00:15 +000031{
Stephane Ouellettea2c70372003-02-25 11:54:56 +000032 struct condition_info *info =
33 (struct condition_info *) (*match)->data;
Stephane Ouelletted57b0602002-11-02 15:00:15 +000034
Stephane Ouellettea2c70372003-02-25 11:54:56 +000035 if (c == 'X') {
Stephane Ouellettefbe3abe2003-03-26 14:42:35 +000036 if (*flags)
37 exit_error(PARAMETER_PROBLEM,
38 "Can't specify multiple conditions");
39
Stephane Ouelletteed30c6b2003-04-27 13:07:18 +000040 check_inverse(optarg, &invert, &optind, 0);
41
Stephane Ouellettea2c70372003-02-25 11:54:56 +000042 if (strlen(argv[optind - 1]) < CONDITION_NAME_LEN)
43 strcpy(info->name, argv[optind - 1]);
44 else
45 exit_error(PARAMETER_PROBLEM,
46 "File name too long");
47
48 info->invert = invert;
49 *flags = 1;
50 return 1;
51 }
52
53 return 0;
Stephane Ouelletted57b0602002-11-02 15:00:15 +000054}
55
56
Stephane Ouellettea2c70372003-02-25 11:54:56 +000057static void
58final_check(unsigned int flags)
Stephane Ouelletted57b0602002-11-02 15:00:15 +000059{
Stephane Ouellettea2c70372003-02-25 11:54:56 +000060 if (!flags)
61 exit_error(PARAMETER_PROBLEM,
62 "Condition match: must specify --condition");
63}
Stephane Ouelletted57b0602002-11-02 15:00:15 +000064
Stephane Ouellettea2c70372003-02-25 11:54:56 +000065
66static void
67print(const struct ipt_ip *ip,
68 const struct ipt_entry_match *match, int numeric)
69{
70 const struct condition_info *info =
71 (const struct condition_info *) match->data;
72
73 printf("condition %s%s ", (info->invert) ? "!" : "", info->name);
74}
75
76
77static void
78save(const struct ipt_ip *ip,
79 const struct ipt_entry_match *match)
80{
81 const struct condition_info *info =
82 (const struct condition_info *) match->data;
83
Stephane Ouelletteed30c6b2003-04-27 13:07:18 +000084 printf("--condition %s\"%s\" ", (info->invert) ? "! " : "", info->name);
Stephane Ouelletted57b0602002-11-02 15:00:15 +000085}
86
87
88static struct iptables_match condition = {
Pablo Neira8caee8b2004-12-28 13:11:59 +000089 .name = "condition",
90 .version = IPTABLES_VERSION,
91 .size = IPT_ALIGN(sizeof(struct condition_info)),
92 .userspacesize = IPT_ALIGN(sizeof(struct condition_info)),
93 .help = &help,
Pablo Neira8caee8b2004-12-28 13:11:59 +000094 .parse = &parse,
95 .final_check = &final_check,
96 .print = &print,
97 .save = &save,
98 .extra_opts = opts
Stephane Ouelletted57b0602002-11-02 15:00:15 +000099};
100
101
Stephane Ouellettea2c70372003-02-25 11:54:56 +0000102void
103_init(void)
Stephane Ouelletted57b0602002-11-02 15:00:15 +0000104{
Stephane Ouellettea2c70372003-02-25 11:54:56 +0000105 register_match(&condition);
Stephane Ouelletted57b0602002-11-02 15:00:15 +0000106}