]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
libxtables: Introduce global params structuring
authorJamal Hadi Salim <hadi@cyberus.ca>
Wed, 11 Feb 2009 11:58:54 +0000 (12:58 +0100)
committerPatrick McHardy <kaber@trash.net>
Wed, 11 Feb 2009 11:58:54 +0000 (12:58 +0100)
introduce a new struct,xtables_globals, so as to
localize the globals used and help in symbol renames.
The applications must invoke xtables_set_params() before starting
to use any iptables APIs.
xtables_set_params() is intended to free xtables from depending
(as it does right now) on existence of such externally definitions
(from iptables/iptables6 etc). At the moment, xtables wont even
compile without presence of at least one of {iptables/iptables6 etc}

Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: Patrick McHardy <kaber@trash.net>
include/xtables.h.in
xtables.c

index 02750fb9736742ea2516fae5cedc352f2c8773fe..61dbc767b39edb897eb6bad812064b1ce5670a73 100644 (file)
 
 struct in_addr;
 
+struct xtables_globals
+{
+       unsigned int option_offset;
+       char *program_version;
+       char *program_name;
+       struct option *opts;
+};
+
 /* Include file for additions: new matches and targets. */
 struct xtables_match
 {
@@ -195,6 +203,7 @@ extern void *xtables_malloc(size_t);
 
 extern int xtables_insmod(const char *, const char *, bool);
 extern int xtables_load_ko(const char *, bool);
+int xtables_set_params(struct xtables_globals *xtp);
 
 extern struct xtables_match *xtables_find_match(const char *name,
        enum xtables_tryload, struct xtables_rule_match **match);
index 6c954754959603dfe2b3fe4d87b3f6d30db5d344..aad5e5338a0e246618417a127ae1862fdbf3676e 100644 (file)
--- a/xtables.c
+++ b/xtables.c
 #define PROC_SYS_MODPROBE "/proc/sys/kernel/modprobe"
 #endif
 
+struct xtables_globals *xt_params;
+/**
+ * xtables_set_params - set the global parameters used by xtables
+ * @xtp:       input xtables_globals structure
+ *
+ * The app is expected to pass a valid xtables_globals data-filled
+ * with proper values
+ * @xtp cannot be NULL
+ *
+ * Returns -1 on failure to set and 0 on success
+ */
+int xtables_set_params(struct xtables_globals *xtp)
+{
+       if (!xtp) {
+               fprintf(stderr, "%s: Illegal global params\n",__func__);
+               return -1;
+       }
+
+       xt_params = xtp;
+       return 0;
+}
+
 /**
  * xtables_afinfo - protocol family dependent information
  * @kmod:              kernel module basename (e.g. "ip_tables")