1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
#ifndef _ARPTABLES_USER_H
#define _ARPTABLES_USER_H
#include <stdint.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;
/* Revision of target (0 by default). */
uint8_t revision;
/* 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;
/* Revision of target (0 by default). */
uint8_t revision;
/* 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 uint16_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);
struct in_addr *parse_hostnetwork(const char *name, unsigned int *naddrs);
void print_mac(const unsigned char *mac, int l);
#endif /*_ARPTABLES_USER_H*/
|