summaryrefslogtreecommitdiffstats
path: root/include/arptables.h
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2003-06-09 20:47:32 +0000
committerBart De Schuymer <bdschuym@pandora.be>2003-06-09 20:47:32 +0000
commit369afc14de1d89ff5627ff4c5f72f6f839244b50 (patch)
tree6fb674c7e732907f9bfa07ee7df4b34c28b8bd8d /include/arptables.h
*** empty log message ***
Diffstat (limited to 'include/arptables.h')
-rw-r--r--include/arptables.h152
1 files changed, 152 insertions, 0 deletions
diff --git a/include/arptables.h b/include/arptables.h
new file mode 100644
index 0000000..53d1c8c
--- /dev/null
+++ b/include/arptables.h
@@ -0,0 +1,152 @@
+#ifndef _ARPTABLES_USER_H
+#define _ARPTABLES_USER_H
+
+#include "arptables_common.h"
+#include "libarptc/libarptc.h"
+
+
+/*******************************/
+/* REMOVE LATER, PUT IN KERNEL */
+/*******************************/
+struct arpt_entry_match
+{
+ int iets;
+};
+
+/*******************************/
+/* END OF KERNEL REPLACEMENTS */
+/*******************************/
+
+/* Include file for additions: new matches and targets. */
+struct arptables_match
+{
+ struct arptables_match *next;
+
+ arpt_chainlabel name;
+
+ const char *version;
+
+ /* Size of match data. */
+ size_t size;
+
+ /* Size of match data relevent for userspace comparison purposes */
+ size_t userspacesize;
+
+ /* Function which prints out usage message. */
+ void (*help)(void);
+
+ /* Initialize the match. */
+ void (*init)(struct arpt_entry_match *m, unsigned int *nfcache);
+
+ /* Function which parses command options; returns true if it
+ ate an option */
+ int (*parse)(int c, char **argv, int invert, unsigned int *flags,
+ const struct arpt_entry *entry,
+ unsigned int *nfcache,
+ struct arpt_entry_match **match);
+
+ /* Final check; exit if not ok. */
+ void (*final_check)(unsigned int flags);
+
+ /* Prints out the match iff non-NULL: put space at end */
+ void (*print)(const struct arpt_arp *ip,
+ const struct arpt_entry_match *match, int numeric);
+
+ /* Saves the match info in parsable form to stdout. */
+ void (*save)(const struct arpt_arp *ip,
+ const struct arpt_entry_match *match);
+
+ /* Pointer to list of extra command-line options */
+ const struct option *extra_opts;
+
+ /* Ignore these men behind the curtain: */
+ unsigned int option_offset;
+ struct arpt_entry_match *m;
+ unsigned int mflags;
+ unsigned int used;
+ unsigned int loaded; /* simulate loading so options are merged properly */
+};
+
+struct arptables_target
+{
+ struct arptables_target *next;
+
+ arpt_chainlabel name;
+
+ const char *version;
+
+ /* Size of target data. */
+ size_t size;
+
+ /* Size of target data relevent for userspace comparison purposes */
+ size_t userspacesize;
+
+ /* Function which prints out usage message. */
+ void (*help)(void);
+
+ /* Initialize the target. */
+ void (*init)(struct arpt_entry_target *t);
+
+ /* Function which parses command options; returns true if it
+ ate an option */
+ int (*parse)(int c, char **argv, int invert, unsigned int *flags,
+ const struct arpt_entry *entry,
+ struct arpt_entry_target **target);
+
+ /* Final check; exit if not ok. */
+ void (*final_check)(unsigned int flags);
+
+ /* Prints out the target iff non-NULL: put space at end */
+ void (*print)(const struct arpt_arp *ip,
+ const struct arpt_entry_target *target, int numeric);
+
+ /* Saves the targinfo in parsable form to stdout. */
+ void (*save)(const struct arpt_arp *ip,
+ const struct arpt_entry_target *target);
+
+ /* Pointer to list of extra command-line options */
+ struct option *extra_opts;
+
+ /* Ignore these men behind the curtain: */
+ unsigned int option_offset;
+ struct arpt_entry_target *t;
+ unsigned int tflags;
+ unsigned int used;
+ unsigned int loaded; /* simulate loading so options are merged properly */
+};
+
+/* Your shared library should call one of these. */
+extern void register_match(struct arptables_match *me);
+extern void register_target(struct arptables_target *me);
+
+extern struct in_addr *dotted_to_addr(const char *dotted);
+extern char *addr_to_dotted(const struct in_addr *addrp);
+extern char *addr_to_anyname(const struct in_addr *addr);
+extern char *mask_to_dotted(const struct in_addr *mask);
+
+extern void parse_hostnetworkmask(const char *name, struct in_addr **addrpp,
+ struct in_addr *maskp, unsigned int *naddrs);
+extern u_int16_t parse_protocol(const char *s);
+
+extern int do_command(int argc, char *argv[], char **table,
+ arptc_handle_t *handle);
+/* Keeping track of external matches and targets: linked lists. */
+extern struct arptables_match *arptables_matches;
+extern struct arptables_target *arptables_targets;
+
+enum arpt_tryload {
+ DONT_LOAD,
+ TRY_LOAD,
+ LOAD_MUST_SUCCEED
+};
+
+extern struct arptables_target *find_target(const char *name, enum arpt_tryload);
+extern struct arptables_match *find_match(const char *name, enum arpt_tryload);
+
+extern int delete_chain(const arpt_chainlabel chain, int verbose,
+ arptc_handle_t *handle);
+extern int flush_entries(const arpt_chainlabel chain, int verbose,
+ arptc_handle_t *handle);
+extern int for_each_chain(int (*fn)(const arpt_chainlabel, int, arptc_handle_t *),
+ int verbose, int builtinstoo, arptc_handle_t *handle);
+#endif /*_ARPTABLES_USER_H*/