Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 1 | /* |
| 2 | * $Id: ebtables.c,v 1.03 2002/01/19 |
| 3 | * |
| 4 | * Copyright (C) 2001-2002 Bart De Schuymer |
| 5 | * |
| 6 | * This code is stongly inspired on the iptables code which is |
| 7 | * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of the |
| 12 | * License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | */ |
| 23 | |
| 24 | #ifndef EBTABLES_U_H |
| 25 | #define EBTABLES_U_H |
Bart De Schuymer | 9cfd654 | 2002-08-13 16:08:08 +0000 | [diff] [blame] | 26 | #include <netinet/in.h> |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 27 | #include <linux/netfilter_bridge/ebtables.h> |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 28 | |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 29 | #define EXEC_STYLE_PRG 0 |
| 30 | #define EXEC_STYLE_DAEMON 1 |
| 31 | |
Bart De Schuymer | f81c270 | 2003-07-23 21:07:04 +0000 | [diff] [blame] | 32 | #ifndef EBT_MIN_ALIGN |
| 33 | #define EBT_MIN_ALIGN (__alignof__(struct ebt_entry_target)) |
| 34 | #endif |
| 35 | #define EBT_ALIGN(s) (((s) + (EBT_MIN_ALIGN-1)) & ~(EBT_MIN_ALIGN-1)) |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 36 | #define ERRORMSG_MAXLEN 128 |
Bart De Schuymer | f81c270 | 2003-07-23 21:07:04 +0000 | [diff] [blame] | 37 | |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 38 | struct ebt_u_entries |
| 39 | { |
Bart De Schuymer | 0976590 | 2002-06-23 08:15:51 +0000 | [diff] [blame] | 40 | int policy; |
Bart De Schuymer | 376ccfb | 2002-07-23 20:52:18 +0000 | [diff] [blame] | 41 | unsigned int nentries; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 42 | /* counter offset for this chain */ |
Bart De Schuymer | 0976590 | 2002-06-23 08:15:51 +0000 | [diff] [blame] | 43 | unsigned int counter_offset; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 44 | /* used for udc */ |
Bart De Schuymer | 0976590 | 2002-06-23 08:15:51 +0000 | [diff] [blame] | 45 | unsigned int hook_mask; |
Bart De Schuymer | 9bfcfd8 | 2005-08-27 16:52:19 +0000 | [diff] [blame] | 46 | char *kernel_start; |
Bart De Schuymer | 0976590 | 2002-06-23 08:15:51 +0000 | [diff] [blame] | 47 | char name[EBT_CHAIN_MAXNAMELEN]; |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 48 | struct ebt_u_entry *entries; |
| 49 | }; |
| 50 | |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 51 | struct ebt_cntchanges |
| 52 | { |
| 53 | unsigned short type; |
Bart De Schuymer | 9d14e84 | 2005-05-24 20:49:27 +0000 | [diff] [blame] | 54 | unsigned short change; /* determines incremental/decremental/change */ |
Bart De Schuymer | 482fbaf | 2005-08-28 13:16:25 +0000 | [diff] [blame] | 55 | struct ebt_cntchanges *prev; |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 56 | struct ebt_cntchanges *next; |
| 57 | }; |
| 58 | |
Bart De Schuymer | 9bfcfd8 | 2005-08-27 16:52:19 +0000 | [diff] [blame] | 59 | #define EBT_ORI_MAX_CHAINS 10 |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 60 | struct ebt_u_replace |
| 61 | { |
| 62 | char name[EBT_TABLE_MAXNAMELEN]; |
| 63 | unsigned int valid_hooks; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 64 | /* nr of rules in the table */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 65 | unsigned int nentries; |
Bart De Schuymer | 9bfcfd8 | 2005-08-27 16:52:19 +0000 | [diff] [blame] | 66 | unsigned int num_chains; |
| 67 | unsigned int max_chains; |
| 68 | struct ebt_u_entries **chains; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 69 | /* nr of counters userspace expects back */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 70 | unsigned int num_counters; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 71 | /* where the kernel will put the old counters */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 72 | struct ebt_counter *counters; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 73 | /* |
| 74 | * can be used e.g. to know if a standard option |
| 75 | * has been specified twice |
| 76 | */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 77 | unsigned int flags; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 78 | /* we stick the specified command (e.g. -A) in here */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 79 | char command; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 80 | /* |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 81 | * here we stick the chain to do our thing on (can be -1 if unspecified) |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 82 | */ |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 83 | int selected_chain; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 84 | /* used for the atomic option */ |
Bart De Schuymer | 8330e89 | 2002-07-14 19:06:47 +0000 | [diff] [blame] | 85 | char *filename; |
Bart De Schuymer | 482fbaf | 2005-08-28 13:16:25 +0000 | [diff] [blame] | 86 | /* tells what happened to the old rules (counter changes) */ |
| 87 | struct ebt_cntchanges *cc; |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | struct ebt_u_table |
| 91 | { |
| 92 | char name[EBT_TABLE_MAXNAMELEN]; |
Bart De Schuymer | f57f50f | 2002-08-29 16:52:36 +0000 | [diff] [blame] | 93 | void (*check)(struct ebt_u_replace *repl); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 94 | void (*help)(const char **); |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 95 | struct ebt_u_table *next; |
| 96 | }; |
| 97 | |
| 98 | struct ebt_u_match_list |
| 99 | { |
| 100 | struct ebt_u_match_list *next; |
| 101 | struct ebt_entry_match *m; |
| 102 | }; |
| 103 | |
| 104 | struct ebt_u_watcher_list |
| 105 | { |
| 106 | struct ebt_u_watcher_list *next; |
| 107 | struct ebt_entry_watcher *w; |
| 108 | }; |
| 109 | |
| 110 | struct ebt_u_entry |
| 111 | { |
Bart De Schuymer | 376ccfb | 2002-07-23 20:52:18 +0000 | [diff] [blame] | 112 | unsigned int bitmask; |
| 113 | unsigned int invflags; |
Bart De Schuymer | 9cfd654 | 2002-08-13 16:08:08 +0000 | [diff] [blame] | 114 | uint16_t ethproto; |
Bart De Schuymer | 376ccfb | 2002-07-23 20:52:18 +0000 | [diff] [blame] | 115 | char in[IFNAMSIZ]; |
| 116 | char logical_in[IFNAMSIZ]; |
| 117 | char out[IFNAMSIZ]; |
| 118 | char logical_out[IFNAMSIZ]; |
Bart De Schuymer | e3cceb7 | 2002-07-26 12:47:33 +0000 | [diff] [blame] | 119 | unsigned char sourcemac[ETH_ALEN]; |
| 120 | unsigned char sourcemsk[ETH_ALEN]; |
| 121 | unsigned char destmac[ETH_ALEN]; |
| 122 | unsigned char destmsk[ETH_ALEN]; |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 123 | struct ebt_u_match_list *m_list; |
| 124 | struct ebt_u_watcher_list *w_list; |
| 125 | struct ebt_entry_target *t; |
Bart De Schuymer | e94eaf7 | 2005-08-28 16:06:22 +0000 | [diff] [blame] | 126 | struct ebt_u_entry *prev; |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 127 | struct ebt_u_entry *next; |
Bart De Schuymer | d2ced82 | 2005-01-23 19:19:00 +0000 | [diff] [blame] | 128 | struct ebt_counter cnt; |
Bart De Schuymer | ab611e2 | 2005-02-14 20:20:03 +0000 | [diff] [blame] | 129 | struct ebt_counter cnt_surplus; /* for increasing/decreasing a counter and for option 'C' */ |
Bart De Schuymer | 482fbaf | 2005-08-28 13:16:25 +0000 | [diff] [blame] | 130 | struct ebt_cntchanges *cc; |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 131 | /* the standard target needs this to know the name of a udc when |
| 132 | * printing out rules. */ |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 133 | struct ebt_u_replace *replace; |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | struct ebt_u_match |
| 137 | { |
| 138 | char name[EBT_FUNCTION_MAXNAMELEN]; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 139 | /* size of the real match data */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 140 | unsigned int size; |
| 141 | void (*help)(void); |
| 142 | void (*init)(struct ebt_entry_match *m); |
| 143 | int (*parse)(int c, char **argv, int argc, |
| 144 | const struct ebt_u_entry *entry, unsigned int *flags, |
| 145 | struct ebt_entry_match **match); |
| 146 | void (*final_check)(const struct ebt_u_entry *entry, |
| 147 | const struct ebt_entry_match *match, |
Bart De Schuymer | 76712df | 2002-08-25 21:54:06 +0000 | [diff] [blame] | 148 | const char *name, unsigned int hookmask, unsigned int time); |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 149 | void (*print)(const struct ebt_u_entry *entry, |
| 150 | const struct ebt_entry_match *match); |
| 151 | int (*compare)(const struct ebt_entry_match *m1, |
| 152 | const struct ebt_entry_match *m2); |
| 153 | const struct option *extra_ops; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 154 | /* |
| 155 | * can be used e.g. to check for multiple occurance of the same option |
| 156 | */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 157 | unsigned int flags; |
| 158 | unsigned int option_offset; |
| 159 | struct ebt_entry_match *m; |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 160 | /* |
| 161 | * if used == 1 we no longer have to add it to |
| 162 | * the match chain of the new entry |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 163 | * be sure to put it back on 0 when finished |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 164 | */ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 165 | unsigned int used; |
| 166 | struct ebt_u_match *next; |
| 167 | }; |
| 168 | |
| 169 | struct ebt_u_watcher |
| 170 | { |
| 171 | char name[EBT_FUNCTION_MAXNAMELEN]; |
| 172 | unsigned int size; |
| 173 | void (*help)(void); |
| 174 | void (*init)(struct ebt_entry_watcher *w); |
| 175 | int (*parse)(int c, char **argv, int argc, |
| 176 | const struct ebt_u_entry *entry, unsigned int *flags, |
| 177 | struct ebt_entry_watcher **watcher); |
| 178 | void (*final_check)(const struct ebt_u_entry *entry, |
| 179 | const struct ebt_entry_watcher *watch, const char *name, |
Bart De Schuymer | 76712df | 2002-08-25 21:54:06 +0000 | [diff] [blame] | 180 | unsigned int hookmask, unsigned int time); |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 181 | void (*print)(const struct ebt_u_entry *entry, |
| 182 | const struct ebt_entry_watcher *watcher); |
| 183 | int (*compare)(const struct ebt_entry_watcher *w1, |
| 184 | const struct ebt_entry_watcher *w2); |
| 185 | const struct option *extra_ops; |
| 186 | unsigned int flags; |
| 187 | unsigned int option_offset; |
| 188 | struct ebt_entry_watcher *w; |
| 189 | unsigned int used; |
| 190 | struct ebt_u_watcher *next; |
| 191 | }; |
| 192 | |
| 193 | struct ebt_u_target |
| 194 | { |
| 195 | char name[EBT_FUNCTION_MAXNAMELEN]; |
| 196 | unsigned int size; |
| 197 | void (*help)(void); |
| 198 | void (*init)(struct ebt_entry_target *t); |
| 199 | int (*parse)(int c, char **argv, int argc, |
| 200 | const struct ebt_u_entry *entry, unsigned int *flags, |
| 201 | struct ebt_entry_target **target); |
| 202 | void (*final_check)(const struct ebt_u_entry *entry, |
| 203 | const struct ebt_entry_target *target, const char *name, |
Bart De Schuymer | 76712df | 2002-08-25 21:54:06 +0000 | [diff] [blame] | 204 | unsigned int hookmask, unsigned int time); |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 205 | void (*print)(const struct ebt_u_entry *entry, |
| 206 | const struct ebt_entry_target *target); |
| 207 | int (*compare)(const struct ebt_entry_target *t1, |
| 208 | const struct ebt_entry_target *t2); |
| 209 | const struct option *extra_ops; |
| 210 | unsigned int option_offset; |
| 211 | unsigned int flags; |
| 212 | struct ebt_entry_target *t; |
| 213 | unsigned int used; |
| 214 | struct ebt_u_target *next; |
| 215 | }; |
| 216 | |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 217 | /* libebtc.c */ |
| 218 | |
| 219 | extern struct ebt_u_table *ebt_tables; |
| 220 | extern struct ebt_u_match *ebt_matches; |
| 221 | extern struct ebt_u_watcher *ebt_watchers; |
| 222 | extern struct ebt_u_target *ebt_targets; |
| 223 | |
| 224 | void ebt_register_table(struct ebt_u_table *); |
| 225 | void ebt_register_match(struct ebt_u_match *); |
| 226 | void ebt_register_watcher(struct ebt_u_watcher *); |
| 227 | void ebt_register_target(struct ebt_u_target *t); |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 228 | int ebt_get_kernel_table(struct ebt_u_replace *replace, int init); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 229 | struct ebt_u_target *ebt_find_target(const char *name); |
| 230 | struct ebt_u_match *ebt_find_match(const char *name); |
| 231 | struct ebt_u_watcher *ebt_find_watcher(const char *name); |
| 232 | struct ebt_u_table *ebt_find_table(const char *name); |
Bart De Schuymer | 0cb0179 | 2003-05-04 16:52:04 +0000 | [diff] [blame] | 233 | int ebtables_insmod(const char *modname); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 234 | void ebt_list_extensions(); |
| 235 | void ebt_initialize_entry(struct ebt_u_entry *e); |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 236 | void ebt_cleanup_replace(struct ebt_u_replace *replace); |
| 237 | void ebt_reinit_extensions(); |
Bart De Schuymer | 9bfcfd8 | 2005-08-27 16:52:19 +0000 | [diff] [blame] | 238 | void ebt_double_chains(struct ebt_u_replace *replace); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 239 | void ebt_free_u_entry(struct ebt_u_entry *e); |
| 240 | struct ebt_u_entries *ebt_name_to_chain(const struct ebt_u_replace *replace, |
| 241 | const char* arg); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 242 | struct ebt_u_entries *ebt_name_to_chain(const struct ebt_u_replace *replace, |
| 243 | const char* arg); |
| 244 | int ebt_get_chainnr(const struct ebt_u_replace *replace, const char* arg); |
| 245 | /**/ |
| 246 | void ebt_change_policy(struct ebt_u_replace *replace, int policy); |
| 247 | void ebt_flush_chains(struct ebt_u_replace *replace); |
| 248 | int ebt_check_rule_exists(struct ebt_u_replace *replace, |
| 249 | struct ebt_u_entry *new_entry); |
| 250 | void ebt_add_rule(struct ebt_u_replace *replace, struct ebt_u_entry *new_entry, |
| 251 | int rule_nr); |
| 252 | void ebt_delete_rule(struct ebt_u_replace *replace, |
| 253 | struct ebt_u_entry *new_entry, int begin, int end); |
| 254 | void ebt_zero_counters(struct ebt_u_replace *replace); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 255 | void ebt_change_counters(struct ebt_u_replace *replace, |
| 256 | struct ebt_u_entry *new_entry, int begin, int end, |
Bart De Schuymer | 9d14e84 | 2005-05-24 20:49:27 +0000 | [diff] [blame] | 257 | struct ebt_counter *cnt, int mask); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 258 | void ebt_new_chain(struct ebt_u_replace *replace, const char *name, int policy); |
| 259 | void ebt_delete_chain(struct ebt_u_replace *replace); |
| 260 | void ebt_rename_chain(struct ebt_u_replace *replace, const char *name); |
| 261 | /**/ |
| 262 | void ebt_do_final_checks(struct ebt_u_replace *replace, struct ebt_u_entry *e, |
| 263 | struct ebt_u_entries *entries); |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 264 | int ebt_check_for_references(struct ebt_u_replace *replace, int print_err); |
| 265 | int ebt_check_for_references2(struct ebt_u_replace *replace, int chain_nr, |
| 266 | int print_err); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 267 | void ebt_check_for_loops(struct ebt_u_replace *replace); |
| 268 | void ebt_add_match(struct ebt_u_entry *new_entry, struct ebt_u_match *m); |
| 269 | void ebt_add_watcher(struct ebt_u_entry *new_entry, struct ebt_u_watcher *w); |
| 270 | void ebt_iterate_matches(void (*f)(struct ebt_u_match *)); |
| 271 | void ebt_iterate_watchers(void (*f)(struct ebt_u_watcher *)); |
| 272 | void ebt_iterate_targets(void (*f)(struct ebt_u_target *)); |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 273 | void __ebt_print_bug(char *file, int line, char *format, ...); |
| 274 | void __ebt_print_error(char *format, ...); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 275 | |
| 276 | /* communication.c */ |
| 277 | |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 278 | int ebt_get_table(struct ebt_u_replace *repl, int init); |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 279 | void ebt_deliver_counters(struct ebt_u_replace *repl, int exec_style); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 280 | void ebt_deliver_table(struct ebt_u_replace *repl); |
| 281 | |
| 282 | /* useful_functions.c */ |
| 283 | |
| 284 | extern int ebt_invert; |
| 285 | void ebt_check_option(unsigned int *flags, unsigned int mask); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 286 | #define ebt_check_inverse(arg) _ebt_check_inverse(arg, argc, argv) |
| 287 | int _ebt_check_inverse(const char option[], int argc, char **argv); |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 288 | void ebt_print_mac(const char *mac); |
| 289 | void ebt_print_mac_and_mask(const char *mac, const char *mask); |
| 290 | int ebt_get_mac_and_mask(char *from, char *to, char *mask); |
| 291 | void ebt_parse_ip_address(char *address, uint32_t *addr, uint32_t *msk); |
| 292 | char *ebt_mask_to_dotted(uint32_t mask); |
| 293 | |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 294 | int do_command(int argc, char *argv[], int exec_style, |
| 295 | struct ebt_u_replace *replace_); |
| 296 | |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 297 | struct ethertypeent *parseethertypebynumber(int type); |
| 298 | |
Bart De Schuymer | 482fbaf | 2005-08-28 13:16:25 +0000 | [diff] [blame] | 299 | #define ebt_to_chain(repl) \ |
| 300 | ({struct ebt_u_entries *_ch = NULL; \ |
| 301 | if (repl->selected_chain != -1) \ |
| 302 | _ch = repl->chains[repl->selected_chain]; \ |
| 303 | _ch;}) |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 304 | #define ebt_print_bug(format, args...) \ |
| 305 | __ebt_print_bug(__FILE__, __LINE__, format, ##args) |
| 306 | #define ebt_print_error(format,args...) __ebt_print_error(format, ##args); |
Bart De Schuymer | ff58720 | 2005-02-08 20:02:28 +0000 | [diff] [blame] | 307 | #define ebt_print_error2(format, args...) {__ebt_print_error(format, ##args); \ |
| 308 | return -1;} |
| 309 | #define ebt_check_option2(flags,mask) \ |
| 310 | ({ebt_check_option(flags,mask); \ |
| 311 | if (ebt_errormsg[0] != '\0') \ |
| 312 | return -1;}) |
| 313 | #define ebt_check_inverse2(option) \ |
| 314 | ({int __ret = ebt_check_inverse(option); \ |
| 315 | if (ebt_errormsg[0] != '\0') \ |
| 316 | return -1; \ |
| 317 | if (!optarg) { \ |
| 318 | __ebt_print_error("Option without (mandatory) argument"); \ |
| 319 | return -1; \ |
| 320 | } \ |
| 321 | __ret;}) |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 322 | #define ebt_print_memory() {printf("Ebtables: " __FILE__ \ |
Bart De Schuymer | 1f7f002 | 2003-01-19 10:36:29 +0000 | [diff] [blame] | 323 | " %s %d :Out of memory.\n", __FUNCTION__, __LINE__); exit(-1);} |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 324 | |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 325 | /* used for keeping the rule counters right during rule adds or deletes */ |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 326 | #define CNT_NORM 0 |
| 327 | #define CNT_DEL 1 |
| 328 | #define CNT_ADD 2 |
Bart De Schuymer | 482fbaf | 2005-08-28 13:16:25 +0000 | [diff] [blame] | 329 | #define CNT_CHANGE 3 |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 330 | |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 331 | extern const char *ebt_hooknames[NF_BR_NUMHOOKS]; |
| 332 | extern const char *ebt_standard_targets[NUM_STANDARD_TARGETS]; |
| 333 | extern char ebt_errormsg[ERRORMSG_MAXLEN]; |
| 334 | extern char *ebt_modprobe; |
| 335 | extern int ebt_silent; |
| 336 | extern int ebt_printstyle_mac; |
| 337 | |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 338 | /* |
| 339 | * Transforms a target string into the right integer, |
| 340 | * returns 0 on success. |
| 341 | */ |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 342 | #define FILL_TARGET(_str, _pos) ({ \ |
| 343 | int _i, _ret = 0; \ |
| 344 | for (_i = 0; _i < NUM_STANDARD_TARGETS; _i++) \ |
| 345 | if (!strcmp(_str, ebt_standard_targets[_i])) {\ |
| 346 | _pos = -_i - 1; \ |
| 347 | break; \ |
| 348 | } \ |
| 349 | if (_i == NUM_STANDARD_TARGETS) \ |
| 350 | _ret = 1; \ |
| 351 | _ret; \ |
Bart De Schuymer | 9cfd654 | 2002-08-13 16:08:08 +0000 | [diff] [blame] | 352 | }) |
| 353 | |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 354 | /* Transforms the target value to an index into standard_targets[] */ |
Bart De Schuymer | 9cfd654 | 2002-08-13 16:08:08 +0000 | [diff] [blame] | 355 | #define TARGET_INDEX(_value) (-_value - 1) |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 356 | /* Returns a target string corresponding to the value */ |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 357 | #define TARGET_NAME(_value) (ebt_standard_targets[TARGET_INDEX(_value)]) |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 358 | /* True if the hook mask denotes that the rule is in a base chain */ |
Bart De Schuymer | 76712df | 2002-08-25 21:54:06 +0000 | [diff] [blame] | 359 | #define BASE_CHAIN (hookmask & (1 << NF_BR_NUMHOOKS)) |
Bart De Schuymer | 9895a8e | 2003-01-11 10:14:24 +0000 | [diff] [blame] | 360 | /* Clear the bit in the hook_mask that tells if the rule is on a base chain */ |
Bart De Schuymer | 76712df | 2002-08-25 21:54:06 +0000 | [diff] [blame] | 361 | #define CLEAR_BASE_CHAIN_BIT (hookmask &= ~(1 << NF_BR_NUMHOOKS)) |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 362 | #define PRINT_VERSION printf(PROGNAME" v"PROGVERSION" ("PROGDATE")\n") |
| 363 | #ifndef PROC_SYS_MODPROBE |
| 364 | #define PROC_SYS_MODPROBE "/proc/sys/kernel/modprobe" |
| 365 | #endif |
| 366 | #define ATOMIC_ENV_VARIABLE "EBTABLES_ATOMIC_FILE" |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 367 | #endif /* EBTABLES_U_H */ |