blob: 1d333942b34c1756de42873ef79516f0853b9690 [file] [log] [blame]
Yasuyuki KOZAKAI52088062007-07-24 05:44:11 +00001#ifndef _XTABLES_H
2#define _XTABLES_H
3
Jan Engelhardtdacafa52009-01-27 20:56:23 +01004/*
5 * Changing any structs/functions may incur a needed change
6 * in libxtables_vcurrent/vage too.
7 */
8
Jan Engelhardtef18e812008-08-04 12:47:48 +02009#include <sys/socket.h> /* PF_* */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000010#include <sys/types.h>
Jan Engelhardtef18e812008-08-04 12:47:48 +020011#include <stdbool.h>
Jan Engelhardt03d99482008-11-18 12:27:54 +010012#include <netinet/in.h>
Jan Engelhardtef18e812008-08-04 12:47:48 +020013#include <net/if.h>
Jan Engelhardt5e9eaed2007-12-17 13:12:01 +000014#include <linux/types.h>
Jan Engelhardt03d99482008-11-18 12:27:54 +010015#include <linux/netfilter.h>
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000016#include <linux/netfilter/x_tables.h>
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000017
Yasuyuki KOZAKAI5cd1ff52007-07-24 05:55:12 +000018#ifndef IPPROTO_SCTP
19#define IPPROTO_SCTP 132
20#endif
21#ifndef IPPROTO_DCCP
22#define IPPROTO_DCCP 33
23#endif
Jan Engelhardt1de7edf2009-01-30 05:38:11 +010024#ifndef IPPROTO_MH
25# define IPPROTO_MH 135
26#endif
Yasuyuki KOZAKAI5cd1ff52007-07-24 05:55:12 +000027#ifndef IPPROTO_UDPLITE
28#define IPPROTO_UDPLITE 136
29#endif
30
Jan Engelhardtdacafa52009-01-27 20:56:23 +010031#define XTABLES_VERSION "libxtables.so.@libxtables_vmajor@"
32#define XTABLES_VERSION_CODE @libxtables_vmajor@
Jan Engelhardt493c7122008-04-15 11:15:16 +020033
Jan Engelhardtef18e812008-08-04 12:47:48 +020034struct in_addr;
35
Jamal Hadi Salim8e90ce62009-02-11 12:58:54 +010036struct xtables_globals
37{
38 unsigned int option_offset;
39 char *program_version;
40 char *program_name;
41 struct option *opts;
42};
43
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000044/* Include file for additions: new matches and targets. */
45struct xtables_match
46{
47 struct xtables_match *next;
48
Jan Engelhardtef18e812008-08-04 12:47:48 +020049 const char *name;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000050
51 /* Revision of match (0 by default). */
52 u_int8_t revision;
53
54 u_int16_t family;
55
56 const char *version;
57
58 /* Size of match data. */
59 size_t size;
60
61 /* Size of match data relevent for userspace comparison purposes */
62 size_t userspacesize;
63
64 /* Function which prints out usage message. */
65 void (*help)(void);
66
67 /* Initialize the match. */
Peter Rileyea146a92007-09-02 13:09:07 +000068 void (*init)(struct xt_entry_match *m);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000069
70 /* Function which parses command options; returns true if it
71 ate an option */
72 /* entry is struct ipt_entry for example */
73 int (*parse)(int c, char **argv, int invert, unsigned int *flags,
74 const void *entry,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000075 struct xt_entry_match **match);
76
77 /* Final check; exit if not ok. */
78 void (*final_check)(unsigned int flags);
79
80 /* Prints out the match iff non-NULL: put space at end */
81 /* ip is struct ipt_ip * for example */
82 void (*print)(const void *ip,
83 const struct xt_entry_match *match, int numeric);
84
85 /* Saves the match info in parsable form to stdout. */
86 /* ip is struct ipt_ip * for example */
87 void (*save)(const void *ip, const struct xt_entry_match *match);
88
89 /* Pointer to list of extra command-line options */
90 const struct option *extra_opts;
91
92 /* Ignore these men behind the curtain: */
93 unsigned int option_offset;
94 struct xt_entry_match *m;
95 unsigned int mflags;
96#ifdef NO_SHARED_LIBS
97 unsigned int loaded; /* simulate loading so options are merged properly */
98#endif
99};
100
101struct xtables_target
102{
103 struct xtables_target *next;
104
Jan Engelhardtef18e812008-08-04 12:47:48 +0200105 const char *name;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000106
107 /* Revision of target (0 by default). */
108 u_int8_t revision;
109
110 u_int16_t family;
111
112 const char *version;
113
114 /* Size of target data. */
115 size_t size;
116
117 /* Size of target data relevent for userspace comparison purposes */
118 size_t userspacesize;
119
120 /* Function which prints out usage message. */
121 void (*help)(void);
122
123 /* Initialize the target. */
Peter Rileyea146a92007-09-02 13:09:07 +0000124 void (*init)(struct xt_entry_target *t);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000125
126 /* Function which parses command options; returns true if it
127 ate an option */
128 /* entry is struct ipt_entry for example */
129 int (*parse)(int c, char **argv, int invert, unsigned int *flags,
130 const void *entry,
131 struct xt_entry_target **targetinfo);
132
133 /* Final check; exit if not ok. */
134 void (*final_check)(unsigned int flags);
135
136 /* Prints out the target iff non-NULL: put space at end */
137 void (*print)(const void *ip,
138 const struct xt_entry_target *target, int numeric);
139
140 /* Saves the targinfo in parsable form to stdout. */
141 void (*save)(const void *ip,
142 const struct xt_entry_target *target);
143
144 /* Pointer to list of extra command-line options */
Jan Engelhardt33653322007-07-30 13:20:43 +0000145 const struct option *extra_opts;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000146
147 /* Ignore these men behind the curtain: */
148 unsigned int option_offset;
149 struct xt_entry_target *t;
150 unsigned int tflags;
151 unsigned int used;
152#ifdef NO_SHARED_LIBS
153 unsigned int loaded; /* simulate loading so options are merged properly */
154#endif
155};
156
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100157struct xtables_rule_match {
158 struct xtables_rule_match *next;
159 struct xtables_match *match;
160 /* Multiple matches of the same type: the ones before
161 the current one are completed from parsing point of view */
162 bool completed;
163};
164
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100165/**
166 * struct xtables_pprot -
167 *
168 * A few hardcoded protocols for 'all' and in case the user has no
169 * /etc/protocols.
170 */
171struct xtables_pprot {
172 const char *name;
173 u_int8_t num;
174};
175
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100176enum xtables_tryload {
177 XTF_DONT_LOAD,
178 XTF_DURING_LOAD,
179 XTF_TRY_LOAD,
180 XTF_LOAD_MUST_SUCCEED,
181};
182
Jan Engelhardta41545c2009-01-27 21:27:19 +0100183enum xtables_exittype {
184 OTHER_PROBLEM = 1,
185 PARAMETER_PROBLEM,
186 VERSION_PROBLEM,
187 RESOURCE_PROBLEM,
188 XTF_ONLY_ONCE,
189 XTF_NO_INVERT,
190 XTF_BAD_VALUE,
191 XTF_ONE_ACTION,
192};
193
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100194extern const char *xtables_program_name;
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100195extern const char *xtables_modprobe_program;
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100196extern struct xtables_match *xtables_matches;
197extern struct xtables_target *xtables_targets;
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100198
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100199extern void xtables_init(void);
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100200extern void xtables_set_nfproto(uint8_t);
Jan Engelhardt630ef482009-01-27 14:58:41 +0100201extern void *xtables_calloc(size_t, size_t);
202extern void *xtables_malloc(size_t);
203
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100204extern int xtables_insmod(const char *, const char *, bool);
205extern int xtables_load_ko(const char *, bool);
Jamal Hadi Salim8e90ce62009-02-11 12:58:54 +0100206int xtables_set_params(struct xtables_globals *xtp);
Jamal Hadi Salim84c30552009-02-11 13:00:02 +0100207void xtables_free_opts(int reset_offset, struct option *original_opts);
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100208
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100209extern struct xtables_match *xtables_find_match(const char *name,
210 enum xtables_tryload, struct xtables_rule_match **match);
211extern struct xtables_target *xtables_find_target(const char *name,
212 enum xtables_tryload);
213
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000214/* Your shared library should call one of these. */
215extern void xtables_register_match(struct xtables_match *me);
216extern void xtables_register_target(struct xtables_target *me);
217
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100218extern bool xtables_strtoul(const char *, char **, unsigned long *,
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000219 unsigned long, unsigned long);
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100220extern bool xtables_strtoui(const char *, char **, unsigned int *,
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000221 unsigned int, unsigned int);
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100222extern int xtables_service_to_port(const char *name, const char *proto);
223extern u_int16_t xtables_parse_port(const char *port, const char *proto);
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000224extern void
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100225xtables_parse_interface(const char *arg, char *vianame, unsigned char *mask);
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000226
Yasuyuki KOZAKAIa3732db2007-07-24 06:39:40 +0000227/* this is a special 64bit data type that is 8-byte aligned */
Patrick McHardyc329d6a2007-09-05 14:19:23 +0000228#define aligned_u64 u_int64_t __attribute__((aligned(8)))
Yasuyuki KOZAKAIa3732db2007-07-24 06:39:40 +0000229
Jan Engelhardt0f16c722009-01-30 04:55:38 +0100230int xtables_check_inverse(const char option[], int *invert,
231 int *my_optind, int argc);
Jan Engelhardta41545c2009-01-27 21:27:19 +0100232void exit_error(enum xtables_exittype, const char *, ...)
233 __attribute__((noreturn, format(printf,2,3)));
234extern void xtables_param_act(unsigned int, const char *, ...);
Yasuyuki KOZAKAIa3732db2007-07-24 06:39:40 +0000235
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100236extern const char *xtables_ipaddr_to_numeric(const struct in_addr *);
237extern const char *xtables_ipaddr_to_anyname(const struct in_addr *);
238extern const char *xtables_ipmask_to_numeric(const struct in_addr *);
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +0100239extern struct in_addr *xtables_numeric_to_ipaddr(const char *);
240extern struct in_addr *xtables_numeric_to_ipmask(const char *);
Jan Engelhardta0baae82009-01-30 04:32:50 +0100241extern void xtables_ipparse_any(const char *, struct in_addr **,
Jan Engelhardtbd943842008-01-20 13:38:08 +0000242 struct in_addr *, unsigned int *);
Jan Engelhardt08b16162008-01-20 13:36:08 +0000243
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +0100244extern struct in6_addr *xtables_numeric_to_ip6addr(const char *);
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100245extern const char *xtables_ip6addr_to_numeric(const struct in6_addr *);
246extern const char *xtables_ip6addr_to_anyname(const struct in6_addr *);
247extern const char *xtables_ip6mask_to_numeric(const struct in6_addr *);
Jan Engelhardta0baae82009-01-30 04:32:50 +0100248extern void xtables_ip6parse_any(const char *, struct in6_addr **,
Jan Engelhardtbd943842008-01-20 13:38:08 +0000249 struct in6_addr *, unsigned int *);
Jan Engelhardt08b16162008-01-20 13:36:08 +0000250
Max Kellermanna5d09942008-01-29 13:44:34 +0000251/**
252 * Print the specified value to standard output, quoting dangerous
253 * characters if required.
254 */
Jan Engelhardta0baae82009-01-30 04:32:50 +0100255extern void xtables_save_string(const char *value);
Max Kellermanna5d09942008-01-29 13:44:34 +0000256
Yasuyuki KOZAKAIa3732db2007-07-24 06:39:40 +0000257#ifdef NO_SHARED_LIBS
Jan Engelhardtf82070f2008-01-20 13:14:00 +0000258# ifdef _INIT
259# undef _init
260# define _init _INIT
261# endif
262 extern void init_extensions(void);
263#else
264# define _init __attribute__((constructor)) _INIT
Yasuyuki KOZAKAIa3732db2007-07-24 06:39:40 +0000265#endif
266
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100267extern const struct xtables_pprot xtables_chain_protos[];
268extern u_int16_t xtables_parse_protocol(const char *s);
Jan Engelhardt33690a12008-02-11 00:54:00 +0100269
270#ifdef XTABLES_INTERNAL
Jan Engelhardt1de7edf2009-01-30 05:38:11 +0100271# ifndef ARRAY_SIZE
272# define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
273# endif
Jan Engelhardt33690a12008-02-11 00:54:00 +0100274# include <xtables/internal.h>
275#endif
276
Yasuyuki KOZAKAI52088062007-07-24 05:44:11 +0000277#endif /* _XTABLES_H */