summaryrefslogtreecommitdiffstats
path: root/src/ipset_list_set.c
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-04-22 16:50:57 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-04-22 16:50:57 +0200
commit1e6e8bd9a62aa7cd72e13db9355badc96df18ee8 (patch)
tree19042a6421635611d01370cf1d811462bcd648f4 /src/ipset_list_set.c
parentf713cb1e105740c29c0a0906f4eb0ba375f64491 (diff)
Third stage to ipset-5
Refresh existing files in src/ with the new content.
Diffstat (limited to 'src/ipset_list_set.c')
-rw-r--r--src/ipset_list_set.c296
1 files changed, 71 insertions, 225 deletions
diff --git a/src/ipset_list_set.c b/src/ipset_list_set.c
index de16c44..11b2523 100644
--- a/src/ipset_list_set.c
+++ b/src/ipset_list_set.c
@@ -1,229 +1,75 @@
-/* Copyright 2008 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu)
+/* Copyright 2007-2010 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu)
*
* This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
*/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-
-#include <linux/netfilter_ipv4/ip_set_setlist.h>
-#include "ipset.h"
-
-/* Initialize the create. */
-static void
-setlist_create_init(void *data)
-{
- struct ip_set_req_setlist_create *mydata = data;
-
- mydata->size = 8;
-}
-
-/* Function which parses command options; returns true if it ate an option */
-static int
-setlist_create_parse(int c, char *argv[] UNUSED, void *data,
- unsigned *flags UNUSED)
-{
- struct ip_set_req_setlist_create *mydata = data;
- unsigned int size;
-
- switch (c) {
- case '1':
- if (string_to_number(optarg, 1, 255, &size))
- exit_error(PARAMETER_PROBLEM,
- "Invalid size '%s specified: must be "
- "between 1-255", optarg);
- mydata->size = size;
- break;
- default:
- return 0;
- }
- return 1;
-}
-
-/* Final check; exit if not ok. */
-static void
-setlist_create_final(void *data UNUSED, unsigned int flags UNUSED)
-{
-}
-
-/* Create commandline options */
-static const struct option create_opts[] = {
- {.name = "size", .has_arg = required_argument, .val = '1'},
- {NULL},
+#include <libipset/data.h> /* IPSET_OPT_* */
+#include <libipset/parse.h> /* parser functions */
+#include <libipset/print.h> /* printing functions */
+#include <libipset/types.h> /* prototypes */
+
+/* Parse commandline arguments */
+static const struct ipset_arg list_set_create_args[] = {
+ { .name = { "size", "--size", NULL },
+ .has_arg = IPSET_MANDATORY_ARG, .opt = IPSET_OPT_MAXELEM,
+ .parse = ipset_parse_uint32, .print = ipset_print_ip,
+ },
+ { .name = { "timeout", "--timeout", NULL },
+ .has_arg = IPSET_MANDATORY_ARG, .opt = IPSET_OPT_TIMEOUT,
+ .parse = ipset_parse_uint32, .print = ipset_print_number,
+ },
+ { },
+};
+
+static const struct ipset_arg list_set_add_args[] = {
+ { .name = { "timeout", "--timeout", NULL },
+ .has_arg = IPSET_MANDATORY_ARG, .opt = IPSET_OPT_TIMEOUT,
+ .parse = ipset_parse_uint32, .print = ipset_print_number,
+ },
+ { },
+};
+
+static const char list_set_usage[] =
+"create SETNAME list:set\n"
+" [size VALUE] [timeout VALUE]\n"
+"add SETNAME NAME[,before|after,NAME] [timeout VALUE]\n"
+"del SETNAME NAME\n"
+"test SETNAME NAME\n";
+
+struct ipset_type ipset_list_set0 = {
+ .name = "list:set",
+ .alias = "setlist",
+ .revision = 0,
+ .family = AF_UNSPEC,
+ .dimension = IPSET_DIM_ONE,
+ .elem = {
+ [IPSET_DIM_ONE] = {
+ .parse = ipset_parse_name,
+ .print = ipset_print_name,
+ .opt = IPSET_OPT_NAME
+ },
+ },
+ .args = {
+ [IPSET_CREATE] = list_set_create_args,
+ [IPSET_ADD] = list_set_add_args,
+ },
+ .mandatory = {
+ [IPSET_CREATE] = 0,
+ [IPSET_ADD] = IPSET_FLAG(IPSET_OPT_NAME),
+ [IPSET_DEL] = IPSET_FLAG(IPSET_OPT_NAME),
+ [IPSET_TEST] = IPSET_FLAG(IPSET_OPT_NAME),
+ },
+ .full = {
+ [IPSET_CREATE] = IPSET_FLAG(IPSET_OPT_SIZE)
+ | IPSET_FLAG(IPSET_OPT_TIMEOUT),
+ [IPSET_ADD] = IPSET_FLAG(IPSET_OPT_NAME)
+ | IPSET_FLAG(IPSET_OPT_BEFORE)
+ | IPSET_FLAG(IPSET_OPT_NAMEREF)
+ | IPSET_FLAG(IPSET_OPT_TIMEOUT),
+ [IPSET_DEL] = IPSET_FLAG(IPSET_OPT_NAME),
+ [IPSET_TEST] = IPSET_FLAG(IPSET_OPT_NAME),
+ },
+
+ .usage = list_set_usage,
};
-
-static void
-check_setname(const char *name)
-{
- if (strlen(name) > IP_SET_MAXNAMELEN - 1)
- exit_error(PARAMETER_PROBLEM,
- "Setname %s is longer than %d characters.",
- name, IP_SET_MAXNAMELEN - 1);
-}
-
-/* Add, del, test parser */
-static ip_set_ip_t
-setlist_adt_parser(int cmd UNUSED, const char *arg, void *data)
-{
- struct ip_set_req_setlist *mydata = data;
- char *saved = ipset_strdup(arg);
- char *ptr, *tmp = saved;
-
- DP("setlist: %p %p", arg, data);
-
- ptr = strsep(&tmp, ",");
- check_setname(ptr);
- strcpy(mydata->name, ptr);
-
- if (!tmp) {
- mydata->before = 0;
- mydata->ref[0] = '\0';
- return 1;
- }
-
- ptr = strsep(&tmp, ",");
-
- if (tmp == NULL || !(strcmp(ptr, "before") == 0 || strcmp(ptr, "after") == 0))
- exit_error(PARAMETER_PROBLEM,
- "Syntax error, you must specify elements as setname,[before|after],setname");
-
- check_setname(tmp);
- strcpy(mydata->ref, tmp);
- mydata->before = !strcmp(ptr, "before");
-
- free(saved);
-
- return 1;
-}
-
-/*
- * Print and save
- */
-
-static void
-setlist_initheader(struct set *set, const void *data)
-{
- const struct ip_set_req_setlist_create *header = data;
- struct ip_set_setlist *map = set->settype->header;
-
- memset(map, 0, sizeof(struct ip_set_setlist));
- map->size = header->size;
-}
-
-static void
-setlist_printheader(struct set *set, unsigned options UNUSED)
-{
- struct ip_set_setlist *mysetdata = set->settype->header;
-
- printf(" size: %u\n", mysetdata->size);
-}
-
-static void
-setlist_printips_sorted(struct set *set, void *data,
- u_int32_t len UNUSED, unsigned options UNUSED,
- char dont_align)
-{
- struct ip_set_setlist *mysetdata = set->settype->header;
- int i, asize;
- ip_set_id_t *id;
- struct set *elem;
-
- asize = IPSET_VALIGN(sizeof(ip_set_id_t), dont_align);
- for (i = 0; i < mysetdata->size; i++ ) {
- DP("Try %u", i);
- id = (ip_set_id_t *)(data + i * asize);
- DP("Try %u, check", i);
- if (*id == IP_SET_INVALID_ID)
- return;
- elem = set_find_byid(*id);
- printf("%s\n", elem->name);
- }
-}
-
-static void
-setlist_saveheader(struct set *set, unsigned options UNUSED)
-{
- struct ip_set_setlist *mysetdata = set->settype->header;
-
- printf("-N %s %s --size %u\n",
- set->name, set->settype->typename,
- mysetdata->size);
-}
-
-static void
-setlist_saveips(struct set *set, void *data,
- u_int32_t len UNUSED, unsigned options UNUSED, char dont_align)
-{
- struct ip_set_setlist *mysetdata = set->settype->header;
- int i, asize;
- ip_set_id_t *id;
- struct set *elem;
-
- asize = IPSET_VALIGN(sizeof(ip_set_id_t), dont_align);
- for (i = 0; i < mysetdata->size; i++ ) {
- id = (ip_set_id_t *)(data + i * asize);
- if (*id == IP_SET_INVALID_ID)
- return;
- elem = set_find_byid(*id);
- printf("-A %s %s\n", set->name, elem->name);
- }
-}
-
-static void
-setlist_usage(void)
-{
- printf
- ("-N set setlist --size size\n"
- "-A set setname[,before|after,setname]\n"
- "-D set setname\n"
- "-T set setname\n");
-}
-
-static struct settype settype_setlist = {
- .typename = SETTYPE_NAME,
- .protocol_version = IP_SET_PROTOCOL_VERSION,
-
- /* Create */
- .create_size = sizeof(struct ip_set_req_setlist_create),
- .create_init = setlist_create_init,
- .create_parse = setlist_create_parse,
- .create_final = setlist_create_final,
- .create_opts = create_opts,
-
- /* Add/del/test */
- .adt_size = sizeof(struct ip_set_req_setlist),
- .adt_parser = setlist_adt_parser,
-
- /* Printing */
- .header_size = sizeof(struct ip_set_setlist),
- .initheader = setlist_initheader,
- .printheader = setlist_printheader,
- .printips = setlist_printips_sorted,
- .printips_sorted = setlist_printips_sorted,
- .saveheader = setlist_saveheader,
- .saveips = setlist_saveips,
-
- .usage = setlist_usage,
-};
-
-CONSTRUCTOR(setlist)
-{
- settype_register(&settype_setlist);
-
-}