mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-05 12:16:38 +02:00
98 lines
2.5 KiB
C
98 lines
2.5 KiB
C
/*
|
|
* "condition" match extension for iptables
|
|
* Stephane Ouellette <ouellettes [at] videotron ca>, 2002-10-22
|
|
* Massimiliano Hofer <max [at] nucleus it>, 2006-05-15
|
|
* Jan Engelhardt, 2008
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License; either version 2
|
|
* or 3 of the License, as published by the Free Software Foundation.
|
|
*/
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <getopt.h>
|
|
#include <xtables.h>
|
|
#include "xt_condition.h"
|
|
#include "compat_user.h"
|
|
|
|
static void condition_help(void)
|
|
{
|
|
printf(
|
|
"condition match options:\n"
|
|
"[!] --condition name Match on boolean value stored in procfs file\n"
|
|
);
|
|
}
|
|
|
|
static const struct option condition_opts[] = {
|
|
{.name = "condition", .has_arg = true, .val = 'X'},
|
|
{NULL},
|
|
};
|
|
|
|
static int condition_parse(int c, char **argv, int invert, unsigned int *flags,
|
|
const void *entry, struct xt_entry_match **match)
|
|
{
|
|
struct xt_condition_mtinfo *info = (void *)(*match)->data;
|
|
|
|
if (c == 'X') {
|
|
if (*flags)
|
|
xtables_error(PARAMETER_PROBLEM,
|
|
"Can't specify multiple conditions");
|
|
|
|
if (strlen(optarg) < sizeof(info->name))
|
|
strcpy(info->name, optarg);
|
|
else
|
|
xtables_error(PARAMETER_PROBLEM,
|
|
"File name too long");
|
|
|
|
info->invert = invert;
|
|
*flags = 1;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static void condition_check(unsigned int flags)
|
|
{
|
|
if (flags == 0)
|
|
xtables_error(PARAMETER_PROBLEM,
|
|
"Condition match: must specify --condition");
|
|
}
|
|
|
|
static void condition_save(const void *ip, const struct xt_entry_match *match)
|
|
{
|
|
const struct xt_condition_mtinfo *info = (const void *)match->data;
|
|
|
|
printf("%s --condition \"%s\" ", info->invert ? " !" : "", info->name);
|
|
}
|
|
|
|
static void condition_print(const void *ip, const struct xt_entry_match *match,
|
|
int numeric)
|
|
{
|
|
printf(" -m condition");
|
|
condition_save(ip, match);
|
|
}
|
|
|
|
static struct xtables_match condition_mt_reg = {
|
|
.name = "condition",
|
|
.revision = 1,
|
|
.family = NFPROTO_UNSPEC,
|
|
.version = XTABLES_VERSION,
|
|
.size = XT_ALIGN(sizeof(struct xt_condition_mtinfo)),
|
|
.userspacesize = XT_ALIGN(sizeof(struct xt_condition_mtinfo)),
|
|
.help = condition_help,
|
|
.parse = condition_parse,
|
|
.final_check = condition_check,
|
|
.print = condition_print,
|
|
.save = condition_save,
|
|
.extra_opts = condition_opts,
|
|
};
|
|
|
|
static __attribute__((constructor)) void condition_mt_ldr(void)
|
|
{
|
|
xtables_register_match(&condition_mt_reg);
|
|
}
|